Field constructor

Field({
  1. ArrayValue? arrayValue,
  2. Uint8List? blobValue,
  3. bool? booleanValue,
  4. double? doubleValue,
  5. bool? isNull,
  6. int? longValue,
  7. String? stringValue,
})

Implementation

Field({
  this.arrayValue,
  this.blobValue,
  this.booleanValue,
  this.doubleValue,
  this.isNull,
  this.longValue,
  this.stringValue,
});