remove method

void remove(
  1. 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);
}