State constructor
State({
- required String stateName,
- OnEnterLifecycle? onEnter,
- OnExitLifecycle? onExit,
- OnInputLifecycle? onInput,
Implementation
State({
required this.stateName,
this.onEnter,
this.onExit,
this.onInput,
});