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

Pagination with Bloc Pattern in Flutter

Pagination First Practical in Flutter

ExpansionPanel with ExpansionPanelList with Complete Collapse Operation in Flutter