copyWith method
Implementation
WalletListResponse copyWith(
{List<Wallet>? wallets, String? nextCursor, String? requestId}) {
return WalletListResponse(
wallets: wallets ?? this.wallets,
nextCursor: nextCursor ?? this.nextCursor,
requestId: requestId ?? this.requestId);
}