State<StateIdentifier> constructor Null safety

State<StateIdentifier>(
  1. StateIdentifier identifier,
  2. {required Map<Logic, StateIdentifier> events,
  3. required List<Conditional> actions}
)

Represents a state named identifier with a definition of events and actions associated with that state.

Implementation

State(this.identifier, {required this.events, required this.actions});