FileSystemMoveEvent constructor

FileSystemMoveEvent(
  1. String path,
  2. bool isDirectory,
  3. String? destination
)

Constructs a new FileSystemMoveEvent.

Implementation

FileSystemMoveEvent(String path, bool isDirectory, this.destination)
    : super._(FileSystemEvent.move, path, isDirectory);