SecurityLogEntry constructor

const SecurityLogEntry({
  1. required DateTime timestamp,
  2. required String layerName,
  3. required String userId,
  4. required String ipAddress,
  5. required String message,
})

Creates a structured log entry.

Implementation

const SecurityLogEntry({
  required this.timestamp,
  required this.layerName,
  required this.userId,
  required this.ipAddress,
  required this.message,
});