ProjectBeneficiaryModel constructor
ProjectBeneficiaryModel({
- ProjectBeneficiaryAdditionalFields? additionalFields,
- String? id,
- String? projectId,
- String? beneficiaryId,
- String? tag,
- String? beneficiaryClientReferenceId,
- bool? nonRecoverableError = false,
- required String clientReferenceId,
- String? tenantId,
- int? rowVersion,
- required int dateOfRegistration,
- AuditDetails? auditDetails,
- ClientAuditDetails? clientAuditDetails,
- bool? isDeleted = false,
Implementation
ProjectBeneficiaryModel({
this.additionalFields,
this.id,
this.projectId,
this.beneficiaryId,
this.tag,
this.beneficiaryClientReferenceId,
this.nonRecoverableError = false,
required this.clientReferenceId,
this.tenantId,
this.rowVersion,
required int dateOfRegistration,
super.auditDetails,
super.clientAuditDetails,
super.isDeleted = false,
}) : dateOfRegistrationTime =
DateTime.fromMillisecondsSinceEpoch(dateOfRegistration),
super();