off method

void off(
  1. String event
)
inherited

This function attempts to unbind all the handler from the event

@param String event - The event to remove the handler from @return void

Implementation

void off(String event) {
  this._events[event] = <Function>[];
  this._eventsOnce[event] = <Function>[];
}