Bill constructor

const Bill({
  1. required String billId,
  2. required String customerId,
  3. required double total,
  4. required String country,
  5. required String cip,
  6. required String city,
})

Creates a new Bill with the provided parameters.

Implementation

const Bill({
  required this.billId,
  required this.customerId,
  required this.total,
  required this.country,
  required this.cip,
  required this.city,
});