onInput<TInput extends Object> method
Registers a handler to be invoked whenever an input of type TInput
is received.
Implementation
@override
void onInput<TInput extends Object>(InputCallback<TInput> handler) {
_inputCheckers.add((input) => input is TInput);
_inputRunners.add((input) => handler(input as TInput));
}