copyWith method
Implementation
WalletGetRequest copyWith(
{String? clientId, String? secret, String? walletId}) {
return WalletGetRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
walletId: walletId ?? this.walletId);
}