Skip to content

Instantly share code, notes, and snippets.

@sametaybaz
Last active March 26, 2023 09:29
Show Gist options
  • Save sametaybaz/4ff66726bfe7ebfdfb607a7709565e75 to your computer and use it in GitHub Desktop.
Save sametaybaz/4ff66726bfe7ebfdfb607a7709565e75 to your computer and use it in GitHub Desktop.
Dart for Flutter
Dart language workspace for Flutter
// Create sum price list with map function
void main() {
var cart = {
{"quantity": 6, "price": 1000},
{"quantity": 2, "price": 500}
};
int sum = 0;
var deneme = cart.map((e) => sum += e["quantity"]! * e["price"]!).toList();
print(deneme);
print(sum);
}
@sametaybaz
Copy link
Author

for dart

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment