AttendanceLogSearchModel.ignoreDeleted constructor

  1. @MappableConstructor()
AttendanceLogSearchModel.ignoreDeleted({
  1. String? id,
  2. String? registerId,
  3. String? individualId,
  4. String? status,
  5. String? type,
  6. String? tenantId,
  7. int? time,
  8. int? entryTime,
  9. int? exitTime,
  10. List<String>? clientReferenceId,
  11. bool? uploadToServer,
  12. String? boundaryCode,
})

Implementation

@MappableConstructor()
AttendanceLogSearchModel.ignoreDeleted({
  this.id,
  this.registerId,
  this.individualId,
  this.status,
  this.type,
  this.tenantId,
  this.time,
  this.entryTime,
  this.exitTime,
  this.clientReferenceId,
  this.uploadToServer,
  super.boundaryCode,
}) : super(isDeleted: false);