WalletTransactionListResponse constructor

WalletTransactionListResponse({
  1. required List<WalletTransaction> transactions,
  2. String? nextCursor,
  3. required String requestId,
})

Implementation

WalletTransactionListResponse({
  required this.transactions,
  this.nextCursor,
  required this.requestId,
});