copyWithWrapped method
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));
}