Value constructor

Value({
  1. List<Value>? arrayValues,
  2. int? bigIntValue,
  3. bool? bitValue,
  4. Uint8List? blobValue,
  5. double? doubleValue,
  6. int? intValue,
  7. bool? isNull,
  8. double? realValue,
  9. String? stringValue,
  10. StructValue? structValue,
})

Implementation

Value({
  this.arrayValues,
  this.bigIntValue,
  this.bitValue,
  this.blobValue,
  this.doubleValue,
  this.intValue,
  this.isNull,
  this.realValue,
  this.stringValue,
  this.structValue,
});