AuditLog constructor

AuditLog({
  1. int? auditId,
  2. required String auditData,
  3. String? entityType,
  4. String? tablePk,
  5. String? requestId,
  6. DateTime? auditDate,
  7. String? auditAction,
  8. String? applicationUserId,
  9. TicketApplicationUser? applicationUser,
})

Returns a new AuditLog instance.

Implementation

AuditLog({
  this.auditId,
  required this.auditData,
  this.entityType,
  this.tablePk,
  this.requestId,
  this.auditDate,
  this.auditAction,
  this.applicationUserId,
  this.applicationUser,
});