Value constructor

Value({
  1. ArrayValue? arrayValue,
  2. String? blobValue,
  3. bool? booleanValue,
  4. double? doubleValue,
  5. Entity? entityValue,
  6. bool? excludeFromIndexes,
  7. LatLng? geoPointValue,
  8. String? integerValue,
  9. Key? keyValue,
  10. int? meaning,
  11. String? nullValue,
  12. String? stringValue,
  13. String? timestampValue,
})

Implementation

Value({
  this.arrayValue,
  this.blobValue,
  this.booleanValue,
  this.doubleValue,
  this.entityValue,
  this.excludeFromIndexes,
  this.geoPointValue,
  this.integerValue,
  this.keyValue,
  this.meaning,
  this.nullValue,
  this.stringValue,
  this.timestampValue,
});