Bill constructor

Bill(
  1. {required String customerCode,
  2. required String customerName,
  3. required String time,
  4. required String description,
  5. required String amount,
  6. required String billReference,
  7. required String merchantID}
)

Implementation

Bill(
    {required this.customerCode,
    required this.customerName,
    required this.time,
    required this.description,
    required this.amount,
    required this.billReference,
    required this.merchantID});