SessionWorkspaceFileChangedEvent constructor

const SessionWorkspaceFileChangedEvent({
  1. required String id,
  2. required String timestamp,
  3. String? parentId,
  4. bool ephemeral = false,
  5. required String path,
  6. required String operation,
})

Implementation

const SessionWorkspaceFileChangedEvent({
  required super.id,
  required super.timestamp,
  super.parentId,
  super.ephemeral,
  required this.path,
  required this.operation,
}) : super(type: 'session.workspace_file_changed');