ReferralModel constructor

ReferralModel({
  1. ReferralAdditionalFields? additionalFields,
  2. String? id,
  3. String? projectId,
  4. String? projectBeneficiaryClientReferenceId,
  5. String? referrerId,
  6. String? recipientType,
  7. String? recipientId,
  8. List<String>? reasons,
  9. bool? nonRecoverableError = false,
  10. required String clientReferenceId,
  11. String? tenantId,
  12. int? rowVersion,
  13. AuditDetails? auditDetails,
  14. ClientAuditDetails? clientAuditDetails,
  15. bool? isDeleted = false,
})

Implementation

ReferralModel({
  this.additionalFields,
  this.id,
  this.projectId,
  this.projectBeneficiaryClientReferenceId,
  this.referrerId,
  this.recipientType,
  this.recipientId,
  this.reasons,
  this.nonRecoverableError = false,
  required this.clientReferenceId,
  this.tenantId,
  this.rowVersion,
  super.auditDetails,
  super.clientAuditDetails,
  super.isDeleted = false,
}) : super();