remove static method

void remove(
  1. String event
)

Remove a callback function for an event

Implementation

static void remove(String event) {
  if (_listeners.containsKey(event)) {
    _listeners.remove(event);
  }
}