ExecutionStep<T> constructor

ExecutionStep<T>(
  1. RootState<T> root,
  2. T? context,
  3. History<T> history, {
  4. Iterable<Transition<T>> transitions = const [],
  5. Iterable<State<T>> activeStates = const [],
  6. Iterable<State<T>> entryStates = const [],
  7. Iterable<State<T>> exitStates = const [],
  8. Iterable<State<T>> defaultEntryStates = const [],
  9. Map<State<T>, Transition<T>> defaultHistoryActions = const {},
})

Implementation

ExecutionStep(this.root, this.context, this.history,
    {this.transitions = const [],
    this.activeStates = const [],
    this.entryStates = const [],
    this.exitStates = const [],
    this.defaultEntryStates = const [],
    this.defaultHistoryActions = const {}});