dispatchAsync method

  1. @Deprecated("Use `dispatchAndWait` instead. This will be removed.")
Future<ActionStatus> dispatchAsync(
  1. ReduxAction<St> action, {
  2. bool notify = true,
})

Implementation

@Deprecated("Use `dispatchAndWait` instead. This will be removed.")
Future<ActionStatus> dispatchAsync(ReduxAction<St> action, {bool notify = true}) =>
    store.dispatchAndWait(action, notify: notify);