ActionHandler typedef
ActionHandler =
void Function(Action a)
ActionHandler handles an action, this will contain the actual middleware logic
Implementation
typedef ActionHandler = void Function(Action<dynamic> a);
ActionHandler handles an action, this will contain the actual middleware logic
typedef ActionHandler = void Function(Action<dynamic> a);