copyWithWrapped method
Implementation
AssetReportRefreshRequestOptions copyWithWrapped(
{Wrapped<String?>? clientReportId,
Wrapped<String?>? webhook,
Wrapped<AssetReportUser?>? user}) {
return AssetReportRefreshRequestOptions(
clientReportId: (clientReportId != null
? clientReportId.value
: this.clientReportId),
webhook: (webhook != null ? webhook.value : this.webhook),
user: (user != null ? user.value : this.user));
}