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