verySimpleFormatter static method

String verySimpleFormatter(
  1. dynamic state,
  2. ReduxAction action,
  3. bool ini,
  4. int dispatchCount,
  5. DateTime timestamp,
)

A very simple formatter that writes only the action.

Implementation

static String verySimpleFormatter(
  dynamic state,
  ReduxAction action,
  bool ini,
  int dispatchCount,
  DateTime timestamp,
) =>
    "$action ${ini ? 'INI' : 'END'}";