State<StateIdentifier> constructor
Null safety
- StateIdentifier identifier,
- {required Map<
Logic, StateIdentifier> events, - 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});