Partnership constructor

Partnership({
  1. PartnershipType? type,
  2. PartnershipStatus? status,
  3. String? partnerId,
  4. String? meToOtherRelationshipDescription,
  5. String? otherToMeRelationshipDescription,
})

Implementation

Partnership({
		PartnershipType? type,
		PartnershipStatus? status,
		String? partnerId,
		String? meToOtherRelationshipDescription,
		String? otherToMeRelationshipDescription
	}) : type = type ?? null,
	status = status ?? null,
	partnerId = partnerId ?? null,
	meToOtherRelationshipDescription = meToOtherRelationshipDescription ?? null,
	otherToMeRelationshipDescription = otherToMeRelationshipDescription ?? null;