SecurityEvent constructor

const SecurityEvent({
  1. required SecurityEventType type,
  2. required DateTime timestamp,
  3. required String appState,
  4. required String platform,
  5. String? filePath,
  6. String? userId,
  7. ScreenContext? screen,
  8. Map<String, dynamic>? deviceInfo,
  9. Map<String, dynamic>? raw,
})

Implementation

const SecurityEvent({
  required this.type,
  required this.timestamp,
  required this.appState,
  required this.platform,
  this.filePath,
  this.userId,
  this.screen,
  this.deviceInfo,
  this.raw,
});