Dart Functions: Anonymous Functions or Lambda Expression
Jinali Ghoghari
1 min read
Lambda functions are a short and simple way to express tiny functions are also known as anonymous functions or closures.
They are functions without a name that can be used inline within the code.
return_type var_name = (parameters)=> expression;
Note, when using the Lambda function syntax, only one expression can be returned, and it must be a single-line expression.
How to use a Lambda function to add two numbers
How to use a Lambda function to display a message on the screen
How to use a Lambda function to concatenate strings
Finally, if a function only returns one expression, we may use the Lambda function to represent it in only one line.
0
Subscribe to my newsletter
Read articles from Jinali Ghoghari directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Dart#dart language#dart-for-beginnersdart programming tutorialdartfunctionanonymous functionLambda Expression
Written by