PreviewLabelModel constructor

PreviewLabelModel({
  1. required String code,
  2. required String productName,
  3. required String price,
  4. required String companyName,
  5. required List<String> toppings,
  6. required String note,
  7. required String billDate,
  8. required int labelIndex,
  9. required int totalLabels,
})

Implementation

PreviewLabelModel({
  required this.code,
  required this.productName,
  required this.price,
  required this.companyName,
  required this.toppings,
  required this.note,
  required this.billDate,
  required this.labelIndex,
  required this.totalLabels,
});