Expense constructor

Expense({
  1. required String title,
  2. required double amount,
})

Implementation

Expense({required this.title, required this.amount});