copyWith method
WalletTransactionListResponse
copyWith({
- List<
WalletTransaction> ? transactions, - String? nextCursor,
- String? requestId,
Implementation
WalletTransactionListResponse copyWith(
{List<WalletTransaction>? transactions,
String? nextCursor,
String? requestId}) {
return WalletTransactionListResponse(
transactions: transactions ?? this.transactions,
nextCursor: nextCursor ?? this.nextCursor,
requestId: requestId ?? this.requestId);
}