NavigationMachine<S, E, T> constructor
NavigationMachine<S, E, T> ({})
Implementation
NavigationMachine({
required super.name,
required super.initialStateId,
required super.states,
required super.transitions,
super.events = const [],
// history is disabled for now. It's usefulness is to be justified in
// navigation context then need to be prototyped. Also see assert in
// HismaRouterDelegate constructor.
// super.history,
super.data,
super.strict,
});