getBalancesStream method

Stream<List<WalletBalance>> getBalancesStream(
  1. String walletId
)

Implementation

Stream<List<WalletBalance>> getBalancesStream(String walletId) {
  _initBalanceStream(walletId);
  return _walletBalanceStreams[walletId]!.stream;
}