HFReferralModel constructor

HFReferralModel({
  1. HFReferralAdditionalFields? additionalFields,
  2. String? id,
  3. String? tenantId,
  4. String? name,
  5. String? projectId,
  6. String? projectFacilityId,
  7. String? symptomSurveyId,
  8. String? beneficiaryId,
  9. String? referralCode,
  10. String? nationalLevelId,
  11. String? symptom,
  12. bool? nonRecoverableError = false,
  13. required String clientReferenceId,
  14. int? rowVersion,
  15. AuditDetails? auditDetails,
  16. ClientAuditDetails? clientAuditDetails,
  17. bool? isDeleted = false,
})

Implementation

HFReferralModel({
  this.additionalFields,
  this.id,
  this.tenantId,
  this.name,
  this.projectId,
  this.projectFacilityId,
  this.symptomSurveyId,
  this.beneficiaryId,
  this.referralCode,
  this.nationalLevelId,
  this.symptom,
  this.nonRecoverableError = false,
  required this.clientReferenceId,
  this.rowVersion,
  super.auditDetails,
  super.clientAuditDetails,
  super.isDeleted = false,
}) : super();