Value constructor

Value({
  1. bool? booleanValue,
  2. Date? dateValue,
  3. double? doubleValue,
  4. String? integerValue,
  5. String? stringValue,
  6. String? timestampValue,
})

Implementation

Value({
  this.booleanValue,
  this.dateValue,
  this.doubleValue,
  this.integerValue,
  this.stringValue,
  this.timestampValue,
});