docs(required-named-parameters): correct grammar

This commit is contained in:
davhojt 2023-01-19 10:16:11 +00:00 committed by Dav Hojt
parent 6bfe6f5bdf
commit 2ddc4d4d1f
1 changed files with 4 additions and 3 deletions

View File

@ -2,6 +2,7 @@
### Instructions
Write a function called `namedRequiredSum()` that accepts _required_ named parameters `first`, `second`, `third` and returns their sum. All the parameters are integers.
- Note: Find out how to make required [named parameters](https://dart.dev/guides/language/language-tour).
Write a function named `namedRequiredSum`, that returns the sum of its required [named](https://dart.dev/guides/language/language-tour) `int` parameters:
- `first`
- `second`
- `third`