dispatch function

void dispatch(
  1. dynamic dispatchable
)

Actions and Dispatching

use dispatch or dispatchFunc to throw actions

  • You can extend ReduxAction
  • or you can use dispatchFunc

Implementation

// # Normal Dispatch
void dispatch(dynamic dispatchable) =>
    _dartBoardReduxKey.currentState!.store.dispatch(dispatchable);