//app/dev.atick.compose.repository.expenses/ExpensesRepository/getAllExpenses
getAllExpenses
[androidJvm]\ abstract fun getAllExpenses(startDate: Long, endDate: Long): Flow<List<UiExpense>>
Gets all the expenses.
Return
A Flow of List of UiExpense representing the expenses.
Parameters
androidJvm
startDate | The start date of the expenses. |
endDate | The end date of the expenses. |