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