CreateFileRequestedOptions constructor
CreateFileRequestedOptions({})
Implementation
CreateFileRequestedOptions({
/// 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 file to be created.
required String filePath,
}) : _wrapped = $js.CreateFileRequestedOptions(
fileSystemId: fileSystemId,
requestId: requestId,
filePath: filePath,
);