ProjectBeneficiarySearchModel constructor
ProjectBeneficiarySearchModel({
- List<
String> ? id, - List<
String> ? projectId, - List<
String> ? beneficiaryId, - List<
String> ? tag, - List<
String> ? beneficiaryClientReferenceId, - DateTime? beneficiaryRegistrationDateLte,
- DateTime? beneficiaryRegistrationDateGte,
- int? offset,
- int? limit,
- List<
String> ? clientReferenceId, - String? tenantId,
- int? dateOfRegistration,
- String? boundaryCode,
- bool? isDeleted = false,
Implementation
ProjectBeneficiarySearchModel({
this.id,
this.projectId,
this.beneficiaryId,
this.tag,
this.beneficiaryClientReferenceId,
this.beneficiaryRegistrationDateLte,
this.beneficiaryRegistrationDateGte,
this.offset,
this.limit,
this.clientReferenceId,
this.tenantId,
int? dateOfRegistration,
super.boundaryCode,
super.isDeleted,
}) : dateOfRegistrationTime = dateOfRegistration == null
? null
: DateTime.fromMillisecondsSinceEpoch(dateOfRegistration),
super();