onEnterFromChannel<P> abstract method

void onEnterFromChannel<P>(
  1. EntryChannel<P> channel,
  2. void build(
    1. TransitionHandlerBuilder<D, P>
    )
)

Describes how transition to this state through channel should be handled.

The build function is called with a TransitionHandlerBuilder that can be used to describe the behavior of the entry transition.

Implementation

void onEnterFromChannel<P>(
  EntryChannel<P> channel,
  void Function(TransitionHandlerBuilder<D, P>) build,
);