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

Stack Container Scrollable Card widget UI with Custom Widget

Pagination with Bloc Pattern in Flutter