copyWithWrapped method
Implementation
AssetReportFreddieGetRequest copyWithWrapped(
{Wrapped<String>? auditCopyToken,
Wrapped<String?>? clientId,
Wrapped<String?>? secret}) {
return AssetReportFreddieGetRequest(
auditCopyToken: (auditCopyToken != null
? auditCopyToken.value
: this.auditCopyToken),
clientId: (clientId != null ? clientId.value : this.clientId),
secret: (secret != null ? secret.value : this.secret));
}