combinedBalances property

Stream<List<WalletBalance>> get combinedBalances

public-facing stream of combined balances, grouped by currency.

Implementation

Stream<List<WalletBalance>> get combinedBalances {
  _activateBalances();
  return _combinedBalancesSubject.stream;
}