StoreEnhancer
A store enhancer is a higher-order function that composes a store creator to return a new enhanced store creator.
Implementation
typedef StoreEnhancer<S> =
Store<S> Function(
StoreCreator<S> createStore,
Reducer<S> reducer,
S preloadedState,
);