dispatchAction method

  1. @override
Future<void> dispatchAction(
  1. ReduxAction<AppState> action
)
override

Dispatches an action.

This is an encapsulation of the dispatch method. It expects the dispatch method to be non-null and to return a Future.

Implementation

@override
Future<void> dispatchAction(ReduxAction<AppState> action) async =>
    super.dispatch!(action);