Value constructor

Value({
  1. ArrayValue? arrayValue,
  2. bool? booleanValue,
  3. String? bytesValue,
  4. double? doubleValue,
  5. String? fieldReferenceValue,
  6. Function_? functionValue,
  7. LatLng? geoPointValue,
  8. String? integerValue,
  9. MapValue? mapValue,
  10. String? nullValue,
  11. Pipeline? pipelineValue,
  12. String? referenceValue,
  13. String? stringValue,
  14. String? timestampValue,
})

Implementation

Value({
  this.arrayValue,
  this.booleanValue,
  this.bytesValue,
  this.doubleValue,
  this.fieldReferenceValue,
  this.functionValue,
  this.geoPointValue,
  this.integerValue,
  this.mapValue,
  this.nullValue,
  this.pipelineValue,
  this.referenceValue,
  this.stringValue,
  this.timestampValue,
});