map_dogoo
library
Functions
-
mapGetIfPresent<KeyType, ReturnType>(Map<KeyType, ReturnType> map, KeyType key, {ReturnType? defaultValue})
→ ReturnType?
-
Map에서 원하는 Key에 대한 값을 가져오는 함수.
-
mapSetIfPresent<KeyType, ValueType>({required Map<KeyType, ValueType> map, required KeyType key, ValueType? value, ValueType? defaultValue})
→ Map<KeyType, ValueType>
-
Map에 Key, Value를 추가 할 때 사용할 수 있는 함수
-
mapToPrettyJsonString<KeyType, ValueType>(Map<KeyType, ValueType> map, {int indentSize = 2})
→ String
-
Map 데이터에 대한, 보기 좋은 Json String을 반환.