observe abstract method

void observe(
  1. ReduxAction<St> action,
  2. int dispatchCount, {
  3. required bool ini,
})

If ini==true this is right before the action is dispatched. If ini==false this is right after the action finishes.

Implementation

void observe(
  ReduxAction<St> action,
  int dispatchCount, {
  required bool ini,
});