PropertyStubDto constructor

PropertyStubDto({
  1. String? id,
  2. PropertyTypeStubDto? type,
  3. TypedValueDtoObject? typedValue,
  4. int? deletionDate,
  5. String? encryptedSelf,
})

Returns a new PropertyStubDto instance.

Implementation

PropertyStubDto({
  this.id,
  this.type,
  this.typedValue,
  this.deletionDate,
  this.encryptedSelf,
});