Partnership constructor

Partnership({
  1. PartnershipTypeEnum? type,
  2. PartnershipStatusEnum? status,
  3. String? partnerId,
})

Returns a new Partnership instance.

Implementation

Partnership({
  this.type,
  this.status,
  this.partnerId,
});