off<A extends FloatyAction> method

void off<A extends FloatyAction>(
  1. ActionKey<A> key
)

Removes the handler associated with key.

Implementation

void off<A extends FloatyAction>(ActionKey<A> key) {
  _handlers.remove(key.type);
}