MapExtension<K, V> extension
- on
-
- Map<
K, V>
- Map<
Methods
-
extract<
T> (K key) → Option< T> -
Available on Map<
Return an Option that conditionally accesses map keys, if they match the given type. Useful for accessing nested JSON.K, V> , provided by the MapExtension extension -
extractMap(
K key) → Option< Map< K, dynamic> > -
Available on Map<
Return an Option that conditionally accesses map keys, if they contain a map with the same key type. Useful for accessing nested JSON.K, V> , provided by the MapExtension extension -
lookup(
K key) → Option< V> -
Available on Map<
Return an Option that conditionally accesses map keys.K, V> , provided by the MapExtension extension