lastDispatchAction property

ReduxAction? lastDispatchAction

For Debug Get the last one in the action list

Implementation

ReduxAction? get lastDispatchAction {
  if (store.debugActionList.isNotEmpty) {
    return store.debugActionList.last;
  }
  return null;
}