ExecuteActionRequestedOptions constructor
ExecuteActionRequestedOptions({})
Implementation
ExecuteActionRequestedOptions({
/// The identifier of the file system related to this operation.
required String fileSystemId,
/// The unique identifier of this request.
required int requestId,
/// The set of paths of the entries to be used for the action.
required List<String> entryPaths,
/// The identifier of the action to be executed.
required String actionId,
}) : _wrapped = $js.ExecuteActionRequestedOptions(
fileSystemId: fileSystemId,
requestId: requestId,
entryPaths: entryPaths.toJSArray((e) => e),
actionId: actionId,
);