newStartState method

State<T> newStartState(
  1. T identifier
)

Returns a new start state for this machine.

Implementation

State<T> newStartState(T identifier) => _start = newState(identifier);