dispatchAsyncWithResult<R> method
- @internal
- @nonVirtual
- BaseAsyncReduxActionWithResult<
ReduxNotifier< action, {ActionState> , ActionState, R> - String? debugOrigin,
- LabeledReference? debugOriginRef,
inherited
Dispatches an asynchronous action and updates the state. Returns the new state along with 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
Future<(T, R)> dispatchAsyncWithResult<R>(
BaseAsyncReduxActionWithResult<ReduxNotifier<T>, T, R> action, {
String? debugOrigin,
LabeledReference? debugOriginRef,
}) {
return _dispatchAsyncWithResult<R>(
action,
debugOrigin: debugOrigin,
debugOriginRef: debugOriginRef,
);
}