FileSystemDeleteEvent constructor

FileSystemDeleteEvent(
  1. String path,
  2. bool isDirectory
)

Constructs a new FileSystemDeleteEvent.

Implementation

FileSystemDeleteEvent(String path, bool isDirectory)
    : super._(FileSystemEvent.delete, path, isDirectory);