[Dart] Maps

 

[Ko]

 - Map 생성 : Map<KeyType, ValueType> mapName = { Key : Value }

 - Map 사용 : mapName[Key]

 - 활용 : mapName.length, mapName.keys, mapName.values

 

[En]

 - Map 생성 : Map<KeyType, ValueType> mapName = { Key : Value }
 - Map 사용 : mapName[Key]
 - 활용 : mapName.length, mapName.keys, mapName.values

'플러터(Flutter) > 다트(Dart)' 카테고리의 다른 글

[Dart] Exception Handling & Null Aware Operators  (0) 2020.03.19
[Dart] Futures, Async & Await  (0) 2020.03.19
[Dart] Functions as First Order Objects  (0) 2020.03.19
[Dart] Enums  (0) 2020.03.19
[Dart] Final vs. Const  (0) 2020.03.19

+ Recent posts