HealthcarePartyHistoryStatusDto constructor

HealthcarePartyHistoryStatusDto({
  1. required HealthcarePartyHistoryStatusDtoStatusEnum status,
  2. required String specialisationCode,
  3. required int startDate,
  4. required bool active,
})

Returns a new HealthcarePartyHistoryStatusDto instance.

Implementation

HealthcarePartyHistoryStatusDto({
  required this.status,
  required this.specialisationCode,
  required this.startDate,
  required this.active,
});