copyWithWrapped method

GenerateContentDownloadLinkResponse copyWithWrapped({
  1. Wrapped<String>? url,
})

Implementation

GenerateContentDownloadLinkResponse copyWithWrapped({Wrapped<String>? url}) {
  return GenerateContentDownloadLinkResponse(
    url: (url != null ? url.value : this.url),
  );
}