off method
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>[];
}