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