copyWithWrapped method
Implementation
AssetReportCreateRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<List<String>>? accessTokens,
Wrapped<int>? daysRequested,
Wrapped<AssetReportCreateRequestOptions?>? options}) {
return AssetReportCreateRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
secret: (secret != null ? secret.value : this.secret),
accessTokens:
(accessTokens != null ? accessTokens.value : this.accessTokens),
daysRequested:
(daysRequested != null ? daysRequested.value : this.daysRequested),
options: (options != null ? options.value : this.options));
}