dispatch method

FutureOr<ActionStatus> dispatch(
  1. ReduxAction<St> action, {
  2. bool notify = true,
})

Implementation

FutureOr<ActionStatus> dispatch(ReduxAction<St> action, {bool notify = true}) =>
    store.dispatch(action, notify: notify);