PendingTransactionsResponse constructor

PendingTransactionsResponse({
  1. required List<SignedTransaction> transactions,
  2. required int totalTransactions,
})

Implementation

PendingTransactionsResponse({
  required this.transactions,
  required this.totalTransactions,
});