BillData constructor

const BillData({
  1. String? name,
  2. double? primaryAmount,
  3. String? dueDate,
  4. bool isPaid = false,
})

Implementation

const BillData({
  this.name,
  this.primaryAmount,
  this.dueDate,
  this.isPaid = false,
});