copyWith method
Implementation
WalletGetResponse copyWith(
{String? walletId, WalletBalance? balance, String? requestId}) {
return WalletGetResponse(
walletId: walletId ?? this.walletId,
balance: balance ?? this.balance,
requestId: requestId ?? this.requestId);
}