BudgetData constructor

const BudgetData({
  1. String? name,
  2. double? primaryAmount,
  3. double? amountUsed,
})

Implementation

const BudgetData({this.name, this.primaryAmount, this.amountUsed});