PropertyValue constructor

PropertyValue({
  1. bool? boolValue,
  2. double? doubleValue,
  3. String? durationValue,
  4. String? intValue,
  5. String? stringValue,
  6. String? timestampValue,
})

Implementation

PropertyValue({
  this.boolValue,
  this.doubleValue,
  this.durationValue,
  this.intValue,
  this.stringValue,
  this.timestampValue,
});