IndividualSearchModel.ignoreDeleted constructor

  1. @MappableConstructor()
IndividualSearchModel.ignoreDeleted({
  1. List<String>? id,
  2. List<String>? userUuid,
  3. String? dateOfBirth,
  4. int? offset,
  5. int? limit,
  6. List<String>? clientReferenceId,
  7. String? tenantId,
  8. NameSearchModel? name,
  9. Gender? gender,
  10. List<IdentifierSearchModel>? identifiers,
  11. String? boundaryCode,
})

Implementation

@MappableConstructor()
IndividualSearchModel.ignoreDeleted({
  this.id,
  this.userUuid,
  this.dateOfBirth,
  this.offset,
  this.limit,
  this.clientReferenceId,
  this.tenantId,
  this.name,
  this.gender,
  this.identifiers,
  super.boundaryCode,
}):  super(isDeleted: false);