Value constructor

Value({
  1. NullValue? nullValue,
  2. double? numberValue,
  3. String? stringValue,
  4. bool? boolValue,
  5. Struct? structValue,
  6. ListValue? listValue,
})

Implementation

Value({
  this.nullValue,
  this.numberValue,
  this.stringValue,
  this.boolValue,
  this.structValue,
  this.listValue,
}) : super(fullyQualifiedName);