Flutter | Dart | Tips and tricks
- A – Async
- Actions starts now and finishes sometime in the future (like API, Database).
- The outcome of one depends on the other.
- B – Binary function
- A function that accepts two parameters and returns a single result
- to repeatedly combine the elements of the iterable.
- reduce()
- fold()
- A function that accepts two parameters and returns a single result
- C – Comments
- /// for the documentation or multiple line. When press enter next line will be comments and VS Cose generate ///
- // for single line comment.