ExtendedValue constructor
      
      ExtendedValue({ 
    
    
- bool? boolValue,
- ErrorValue? errorValue,
- String? formulaValue,
- double? numberValue,
- String? stringValue,
Implementation
ExtendedValue({
  this.boolValue,
  this.errorValue,
  this.formulaValue,
  this.numberValue,
  this.stringValue,
});