processCalculatorValueChange method

  1. @protected
Stream<S> processCalculatorValueChange(
  1. S? state
)

Implementation

@protected
Stream<S> processCalculatorValueChange(S? state) async* {
  if (state != null) {
    await saveCalculatorState();
    yield state;

    addComputeEvent();
  }
}