HydratedStateNotifier<State> constructor

HydratedStateNotifier<State>(
  1. State state
)

Initialize state and populates the internal storage.

Implementation

HydratedStateNotifier(State state) : super(state) {
  hydrate();
}