copyWithWrapped method

AssetReportGetRequest copyWithWrapped({
  1. Wrapped<String?>? clientId,
  2. Wrapped<String?>? secret,
  3. Wrapped<String>? assetReportToken,
  4. Wrapped<bool?>? includeInsights,
  5. Wrapped<bool?>? fastReport,
  6. Wrapped<AssetReportGetRequestOptions?>? options,
})

Implementation

AssetReportGetRequest copyWithWrapped(
    {Wrapped<String?>? clientId,
    Wrapped<String?>? secret,
    Wrapped<String>? assetReportToken,
    Wrapped<bool?>? includeInsights,
    Wrapped<bool?>? fastReport,
    Wrapped<AssetReportGetRequestOptions?>? options}) {
  return AssetReportGetRequest(
      clientId: (clientId != null ? clientId.value : this.clientId),
      secret: (secret != null ? secret.value : this.secret),
      assetReportToken: (assetReportToken != null
          ? assetReportToken.value
          : this.assetReportToken),
      includeInsights: (includeInsights != null
          ? includeInsights.value
          : this.includeInsights),
      fastReport: (fastReport != null ? fastReport.value : this.fastReport),
      options: (options != null ? options.value : this.options));
}