In general, a map is an object that associates keys and values. Both keys and values can be any type of object. Each key occurs only once, but you can use the same value multiple times. Dart support for maps is provided by map literals and the Map type.
Map class - dart:core library - Dart API
A collection of key/value pairs, from which you retrieve a value using its associated key. There is a finite number of keys in the map, and each key has exactly one value associated with it. Maps, and their keys and values, can be iterated. The order of it
api.dart.dev
'Dart' 카테고리의 다른 글
날짜 Format 바꾸기 (0) | 2021.06.23 |
---|---|
where (0) | 2021.05.14 |
String 관련 함수, 프로퍼티 (0) | 2021.03.29 |
Constructor - 팩토리 생성자 (0) | 2021.03.27 |
Constructor - 상수생성자 (0) | 2021.03.27 |