remove method

bool remove(
  1. String key
)

Remove a callback by key Returns true if the key existed and was removed

Implementation

bool remove(String key) {
  return _map.remove(key) != null;
}