middleware property

void Function(Store<State> store, Action action, NextDispatcher next) middleware
final

A Middleware function that only works on actions of a specific type.

Implementation

final void Function(
  Store<State> store,
  Action action,
  NextDispatcher next,
) middleware;