JsReactReduxStore constructor

JsReactReduxStore({
  1. required _JsStateValue? getState(),
  2. required Dispatcher dispatch,
  3. required Function subscribe(
    1. Function
    ),
  4. required Store dartStore,
})

Implementation

external factory JsReactReduxStore({
  required _JsStateValue Function() getState,
  required Dispatcher dispatch,
  required Function Function(Function) subscribe,
  required Store dartStore,
});