NiceAuditLogEntry constructor

const NiceAuditLogEntry({
  1. required String id,
  2. required String user,
  3. required String action,
  4. String? resource,
  5. required DateTime timestamp,
  6. String? ipAddress,
  7. String? userAgent,
  8. Map<String, dynamic>? before,
  9. Map<String, dynamic>? after,
  10. Map<String, dynamic>? metadata,
})

Implementation

const NiceAuditLogEntry({
  required this.id,
  required this.user,
  required this.action,
  this.resource,
  required this.timestamp,
  this.ipAddress,
  this.userAgent,
  this.before,
  this.after,
  this.metadata,
});