PartnershipDto constructor

PartnershipDto({
  1. PartnershipDtoTypeEnum? type,
  2. PartnershipDtoStatusEnum? status,
  3. String? partnerId,
  4. String? meToOtherRelationshipDescription,
  5. String? otherToMeRelationshipDescription,
})

Returns a new PartnershipDto instance.

Implementation

PartnershipDto({
  this.type,
  this.status,
  this.partnerId,
  this.meToOtherRelationshipDescription,
  this.otherToMeRelationshipDescription,
});