Value constructor

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

Implementation

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