appDecorations property

  1. @override
List<DartBoardDecoration> appDecorations
override

We provide our Redux State Object (ExampleState) as an App Decoration We also provide an Epic, delayedIncrementEpic that debounces the action so you mash the button but only get an action when you stop

Implementation

@override
List<DartBoardDecoration> get appDecorations =>
    [LocatorDecoration(() => ExampleState())];