Fat Shorthand

 /// Fat Arrow Notation


void main() {
print(add(10,50));
}
int add(var a, var b) => a + b;
//Fat arrow notation is used only for single expression

Comments

Popular posts from this blog

Second GET API Calling with Bloc simple Example in Flutter

Exception_Dart

Pagination with Bloc Pattern in Flutter