AppState constructor
AppState({
- required PheasantTemplate component,
- List<
ChangeWatcher> watchers = const [], - PheasantTemplate? initState,
- PheasantTemplate? disposeState,
Implementation
AppState(
{required PheasantTemplate component,
List<ChangeWatcher> watchers = const [],
PheasantTemplate? initState,
PheasantTemplate? disposeState})
: componentState = StateObject(initValue: component),
_stateChange = StateChange.empty(),
super(
initState: initState,
component: component,
watchers: watchers,
disposeState: disposeState);