dispatchTakeResult<R> method

  1. @internal
  2. @nonVirtual
R dispatchTakeResult<R>(
  1. BaseReduxActionWithResult<ReduxNotifier<SettingsState>, SettingsState, R> action, {
  2. String? debugOrigin,
  3. LabeledReference? debugOriginRef,
})
inherited

Dispatches an action and updates the state. Returns only the result of the action.

For library consumers, use:

  • BaseReduxAction.external to dispatch external actions.
  • external to dispatch external actions inside the notifier.
  • redux to dispatch internal actions inside the notifier.

Implementation

@internal
@nonVirtual
R dispatchTakeResult<R>(
  BaseReduxActionWithResult<ReduxNotifier<T>, T, R> action, {
  String? debugOrigin,
  LabeledReference? debugOriginRef,
}) {
  return _dispatchWithResult<R>(
    action,
    debugOrigin: debugOrigin,
    debugOriginRef: debugOriginRef,
  ).$2;
}