AddWatcherRequestedOptions constructor
AddWatcherRequestedOptions({})
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,
);