GetActionsRequestedOptions constructor

GetActionsRequestedOptions({
  1. required String fileSystemId,
  2. required int requestId,
  3. required List<String> entryPaths,
})

Implementation

GetActionsRequestedOptions({
  /// The identifier of the file system related to this operation.
  required String fileSystemId,

  /// The unique identifier of this request.
  required int requestId,

  /// List of paths of entries for the list of actions.
  required List<String> entryPaths,
}) : _wrapped = $js.GetActionsRequestedOptions(
        fileSystemId: fileSystemId,
        requestId: requestId,
        entryPaths: entryPaths.toJSArray((e) => e),
      );