call method

  1. @override
void call(
  1. Store<State> store,
  2. dynamic action,
  3. NextDispatcher next
)

Middleware function called by redux, dispatches actions to devtools

Implementation

@override
void call(Store<State> store, dynamic action, NextDispatcher next) {
  next(action);
  if (status == RemoteDevToolsStatus.started && !(action is DevToolsAction)) {
    _relay('ACTION', store.state, action);
  }
}