CareTeamMemberDto constructor

CareTeamMemberDto({
  1. required String id,
  2. CareTeamMemberDtoCareTeamMemberTypeEnum? careTeamMemberType,
  3. String? healthcarePartyId,
  4. CodeStubDto? quality,
  5. String? encryptedSelf,
})

Returns a new CareTeamMemberDto instance.

Implementation

CareTeamMemberDto({
  required this.id,
  this.careTeamMemberType,
  this.healthcarePartyId,
  this.quality,
  this.encryptedSelf,
});