value method
V?
value(
- K key
Implementation
V? value(K key) {
if (this == null) return null;
if (this!.containsKey(key)) {
return this![key];
} else {
return null;
}
}
V? value(K key) {
if (this == null) return null;
if (this!.containsKey(key)) {
return this![key];
} else {
return null;
}
}