getOrNull method
V?
getOrNull(
- K key
Returns the value key
or null if it not exist.
Implementation
V? getOrNull(K key) => this[key];
Returns the value key
or null if it not exist.
V? getOrNull(K key) => this[key];