dispatch method

void dispatch(
  1. ReduxAction action
)

For Debug Dispatch action

Implementation

void dispatch(ReduxAction action) {
  if (_isDebug) {
    store.dispatch(action);
  }
}