copyWithWrapped method
Implementation
WalletListResponse copyWithWrapped(
{Wrapped<List<Wallet>>? wallets,
Wrapped<String?>? nextCursor,
Wrapped<String>? requestId}) {
return WalletListResponse(
wallets: (wallets != null ? wallets.value : this.wallets),
nextCursor: (nextCursor != null ? nextCursor.value : this.nextCursor),
requestId: (requestId != null ? requestId.value : this.requestId));
}