RemoveWatcherRequestedOptions constructor
RemoveWatcherRequestedOptions({})
Implementation
RemoveWatcherRequestedOptions({
/// The identifier of the file system related to this operation.
required String fileSystemId,
/// The unique identifier of this request.
required int requestId,
/// The path of the watched entry.
required String entryPath,
/// Mode of the watcher.
required bool recursive,
}) : _wrapped = $js.RemoveWatcherRequestedOptions(
fileSystemId: fileSystemId,
requestId: requestId,
entryPath: entryPath,
recursive: recursive,
);