color property

String Function(ReduxAction action) color
getter/setter pair

Callback that chooses the color to print in the console.

Implementation

static String Function(ReduxAction action) color = //
    (ReduxAction action) => //
        (action is WaitAction || action is NavigateAction) //
            ? green
            : yellow;