remove method
void
remove(
- K key
Implementation
void remove(K key) {
_map.remove(key);
if (_allowedInExpando(key)) {
_expando[key!] = null;
}
}
void remove(K key) {
_map.remove(key);
if (_allowedInExpando(key)) {
_expando[key!] = null;
}
}