Answers for "working with map on flutter"

1

flutter create new map

Map<String, int> map1 = {'zero': 0, 'one': 1, 'two': 2};
Map map2 = {'zero': 0, 'I': 'one', 10: 'X'};
var map3 = {'zero': 0, 'I': 'one', 10: 'X'};
Posted by: Guest on August-31-2020
0

flutter map key/value

void main() {
  final testMap = {"a": 1, "b": 2, "c": 3, "d": 4, "e": 5};
  for (final mapEntry in testMap.entries) {
    final key = mapEntry.key;
    final value = mapEntry.value;
    print('Key: $key, Value: $value');  // Key: a, Value: 1 ...
  }
}
Posted by: Guest on May-24-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language