handleInput<TInput extends Object> method

Transition handleInput<TInput extends Object>(
  1. TInput input
)

Processes the given input through this state's registered input handlers and returns the resulting transition.

Implementation

Transition handleInput<TInput extends Object>(TInput input) =>
    _internalState.handleInput(this as TState, input);