transactionsCurrencies method

List<Currency> transactionsCurrencies()

Returns all the currencies that were used in the transactions related with this budget.

Implementation

List<Currency> transactionsCurrencies() =>
    transactions.map((transaction) => transaction.value.currency).toList();