GetOrNullMap extension
Methods
-
get(String key)
→ Map<String, dynamic>?
-
Get a map inside a map
-
getList(String key)
→ List<Map<String, dynamic>>?
-
Get a List<Map<String, dynamic>>> from a map.
-
getT<T>(String key)
→ T?
-
Get a value inside a map.
If it is null this returns null, if of another type this throws.