AddWatcherRequestedOptions constructor

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

Implementation

AddWatcherRequestedOptions({
  /// 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 entry to be observed.
  required String entryPath,

  /// Whether observing should include all child entries recursively. It can
  /// be
  /// true for directories only.
  required bool recursive,
}) : _wrapped = $js.AddWatcherRequestedOptions(
        fileSystemId: fileSystemId,
        requestId: requestId,
        entryPath: entryPath,
        recursive: recursive,
      );