FileEvent constructor

FileEvent({
  1. required FileEventType type,
  2. required String filePath,
  3. String? newFilePath,
  4. required int processId,
  5. String? processName,
  6. required int timestamp,
})

Implementation

FileEvent({
  required this.type,
  required this.filePath,
  this.newFilePath,
  required this.processId,
  this.processName,
  required this.timestamp,
});