addComputeEvent method

  1. @protected
void addComputeEvent()

Implementation

@protected
void addComputeEvent() {
  if (debouceComputeEvents) {
    addDebouncedComputeEvent(FastCalculatorBlocEvent.compute<R>() as E);
  } else {
    addEvent(FastCalculatorBlocEvent.compute<R>() as E);
  }
}