Future <int> getBalance()async{ int amount = 0; int income = await getIncomes(); int savings = await getSavings(); int expense = await getExpense(); amount = income - expense - savings; return amount; }