HealthcareProfessional constructor

HealthcareProfessional({
  1. String? id,
  2. String? rev,
  3. int? created,
  4. int? modified,
  5. int? deletionDate,
  6. String? name,
  7. String? lastName,
  8. String? firstName,
  9. List<PersonName> names = const [],
  10. HealthcareProfessionalGenderEnum? gender,
  11. String? civility,
  12. String? speciality,
  13. String? parentId,
  14. List<Address> addresses = const [],
  15. List<String> languages = const [],
  16. String? picture,
  17. Set<CodingReference> specialityCodes = const {},
  18. String? notes,
  19. Set<Property> properties = const {},
  20. SystemMetaDataOwner? systemMetaData,
})

Returns a new HealthcareProfessional instance.

Implementation

HealthcareProfessional({
  this.id,
  this.rev,
  this.created,
  this.modified,
  this.deletionDate,
  this.name,
  this.lastName,
  this.firstName,
  this.names = const [],
  this.gender,
  this.civility,
  this.speciality,
  this.parentId,
  this.addresses = const [],
  this.languages = const [],
  this.picture,
  this.specialityCodes = const {},
  this.notes,
  this.properties = const {},
  this.systemMetaData,
});