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