showCalculatorError method Null safety
- CalculatorError e,
- StackTrace? stack
Show an error on the LCD screen.
Implementation
void showCalculatorError(CalculatorError e, StackTrace? stack) {
showMessage(' error ${getErrorNumber(e)} ');
model.program.programListener.onErrorShown(e, stack);
}