getRecentTransactionsStream method

Stream<List<WalletTransaction>> getRecentTransactionsStream(
  1. String walletId
)

Implementation

Stream<List<WalletTransaction>> getRecentTransactionsStream(String walletId) {
  _initRecentTransactionStream(walletId);
  return _walletRecentTransactionStreams[walletId]!.stream;
}