dispatchAsync method
Future<GraphState>
dispatchAsync(
- AsynchronousReduxAction<
GraphService, GraphState, dynamic> action, { - String? debugOrigin,
inherited
Dispatches an asynchronous action and updates the state. Returns the new state.
Implementation
Future<T> dispatchAsync(
AsynchronousReduxAction<N, T, dynamic> action, {
String? debugOrigin,
}) {
return _notifier.dispatchAsync(
action,
debugOrigin: debugOrigin ?? debugLabel,
debugOriginRef: this,
);
}