remove method
void
remove(
- dynamic key
Removes an entry by key from the extra info map.
Parameters
key: The key to remove.
Implementation
void remove(final dynamic key) {
_data.remove(key);
}
Removes an entry by key from the extra info map.
key: The key to remove.void remove(final dynamic key) {
_data.remove(key);
}