copyWithWrapped method
Implementation
AssetReportRefreshRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<String>? assetReportToken,
Wrapped<int?>? daysRequested,
Wrapped<AssetReportRefreshRequestOptions?>? options}) {
return AssetReportRefreshRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
secret: (secret != null ? secret.value : this.secret),
assetReportToken: (assetReportToken != null
? assetReportToken.value
: this.assetReportToken),
daysRequested:
(daysRequested != null ? daysRequested.value : this.daysRequested),
options: (options != null ? options.value : this.options));
}