setFormulaErrorStringValue method

void setFormulaErrorStringValue(
  1. String eValue
)

Set formula error string value.

Implementation

void setFormulaErrorStringValue(String eValue) {
  errorValue = eValue.split(' ').toList().removeAt(1);
  saveType = 'e';
}