RemoveWatcherRequestedOptions constructor

RemoveWatcherRequestedOptions({
  1. required String fileSystemId,
  2. required int requestId,
  3. required String entryPath,
  4. required bool recursive,
})

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,
      );