PatientResponse constructor

PatientResponse({
  1. required String patientId,
  2. required String name,
  3. required String surname,
  4. required DateTime birthdate,
  5. required String sex,
  6. String? address,
  7. String? contactNumber,
  8. String? relativeContactNumber,
  9. required String status,
})

Implementation

PatientResponse({
  required this.patientId,
  required this.name,
  required this.surname,
  required this.birthdate,
  required this.sex,
  this.address,
  this.contactNumber,
  this.relativeContactNumber,
  required this.status,
});