getBudgetDataList static method
Implementation
static List<BudgetData> getBudgetDataList(BuildContext context) {
return <BudgetData>[
BudgetData(
name: "Coffee shops",
primaryAmount: 70,
amountUsed: 45.49,
),
BudgetData(
name: "Groceries",
primaryAmount: 170,
amountUsed: 16.45,
),
BudgetData(
name: "Restaurants",
primaryAmount: 170,
amountUsed: 123.25,
),
BudgetData(
name: "Clothing",
primaryAmount: 70,
amountUsed: 19.45,
),
];
}