You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
316 B

# Named Required Sum
### Instructions
2 years ago
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).