Partnership constructor
Partnership({
- PartnershipType? type,
- PartnershipStatus? status,
- String? partnerId,
- String? meToOtherRelationshipDescription,
- 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;