TargetModel constructor

TargetModel({
  1. TargetAdditionalFields? additionalFields,
  2. required String id,
  3. String? clientReferenceId,
  4. double? totalNo,
  5. double? targetNo,
  6. bool? nonRecoverableError = false,
  7. String? tenantId,
  8. int? rowVersion,
  9. BeneficiaryType? beneficiaryType,
  10. AuditDetails? auditDetails,
  11. ClientAuditDetails? clientAuditDetails,
  12. bool? isDeleted = false,
})

Implementation

TargetModel({
  this.additionalFields,
  required this.id,
  this.clientReferenceId,
  this.totalNo,
  this.targetNo,
  this.nonRecoverableError = false,
  this.tenantId,
  this.rowVersion,
  this.beneficiaryType,
  super.auditDetails,super.clientAuditDetails,
  super.isDeleted = false,
}): super();