copyWithWrapped method

AssetReportPDFGetRequest copyWithWrapped({
  1. Wrapped<String?>? clientId,
  2. Wrapped<String?>? secret,
  3. Wrapped<String>? assetReportToken,
  4. Wrapped<AssetReportPDFGetRequestOptions?>? options,
})

Implementation

AssetReportPDFGetRequest copyWithWrapped(
    {Wrapped<String?>? clientId,
    Wrapped<String?>? secret,
    Wrapped<String>? assetReportToken,
    Wrapped<AssetReportPDFGetRequestOptions?>? options}) {
  return AssetReportPDFGetRequest(
      clientId: (clientId != null ? clientId.value : this.clientId),
      secret: (secret != null ? secret.value : this.secret),
      assetReportToken: (assetReportToken != null
          ? assetReportToken.value
          : this.assetReportToken),
      options: (options != null ? options.value : this.options));
}