Start a Project

Typedef in Dart Programming Language

In Dart, typedef is used to generate an alias for function type that we can use it as type annotation for declaring variables and return types of that function type so that we can make our code better. An alias of function type can be used as type annotation in variable declaration or function return type. It stores the type information when we assigned the function type to a variable.

Syntax declaration for typedef

Or

Or

Let’s see an example of an implementation:

In the above code, we created the alias of the MathOperation() function using the typedef keyword. We defined two more functions Sum() and Sub(), which have same signature as the typedef function.

Then, we assigned the variable mp that referred to both functions Sum() function and Sub() function. Now, we invoked the function by passing the required argument, and it printed the result to the screen as shown in the below image.

Code Output

So, now as per the example explained please try this in the projects and utilize its features.

 

Exit mobile version