AttendanceLogModel constructor

AttendanceLogModel({
  1. String? id,
  2. String? tenantId,
  3. String? registerId,
  4. String? individualId,
  5. String? type,
  6. int? time,
  7. String? status,
  8. String? clientReferenceId,
  9. bool? uploadToServer = false,
  10. List<String>? documentIds = const [],
  11. bool? nonRecoverableError = false,
  12. int? rowVersion,
  13. Map<String, dynamic>? additionalDetails,
  14. AuditDetails? auditDetails,
  15. ClientAuditDetails? clientAuditDetails,
  16. bool? isDeleted = false,
})

Implementation

AttendanceLogModel({
  this.id,
  this.tenantId,
  this.registerId,
  this.individualId,
  this.type,
  this.time,
  this.status,
  this.clientReferenceId,
  this.uploadToServer = false,
  this.documentIds = const [],
  this.nonRecoverableError = false,
  this.rowVersion,
  this.additionalDetails,
  super.auditDetails,
  super.clientAuditDetails,
  super.isDeleted = false,
}) : super();