Property constructor

Property({
  1. String? id,
  2. PropertyType? type,
  3. TypedValueObject? typedValue,
  4. int? deleted,
})

Returns a new Property instance.

Implementation

Property({
  this.id,
  this.type,
  this.typedValue,
  this.deleted,
});