SimpleStateBridge<T> constructor
SimpleStateBridge<T> (
- T initialState
Creates a SimpleStateBridge with the given initialState.
Implementation
SimpleStateBridge(T initialState) : _notifier = ValueNotifier<T>(initialState);