ExtendedValue constructor

ExtendedValue({
  1. bool? boolValue,
  2. ErrorValue? errorValue,
  3. String? formulaValue,
  4. double? numberValue,
  5. String? stringValue,
})

Implementation

ExtendedValue({
  this.boolValue,
  this.errorValue,
  this.formulaValue,
  this.numberValue,
  this.stringValue,
});