Lambda Function in Dart

They are the short way of representing a function in Dart. They are also called arrow function. But you should note that with lambda function you can return value for only one expression.

Example: Lambda function in dart. 

Dart
// Lambda function in Dart
void gfg() => print("Welcome to w3wiki");

void main()
{
      // Calling Lambda function
    gfg(); 
}

Output: 

Welcome to w3wiki


Dart – Functions

The function is a set of statements that take inputs, do some specific computation and produces output. Functions are created when certain statements are repeatedly occurring in the program and a function is created to replace them. Functions make it easy to divide the complex program into smaller sub-groups and increase the code reusability of the program.

Similar Reads

Defining the Function in Dart

Dart provides us with the facility of using functions in its program....

Functions with Optional Parameter

There are also optional parameter system in Dart which allows user to give some optional parameters inside the function....

Recursive Function in Dart

The recursive function is those functions in which function calls itself. It is a good way to avoid repeatedly calling the same function to get the output....

Lambda Function in Dart

They are the short way of representing a function in Dart. They are also called arrow function. But you should note that with lambda function you can return value for only one expression....

Contact Us