LabelModel constructor

LabelModel({
  1. required List<Uint8List> images,
  2. int quantity = 1,
  3. LabelPerRow? labelPerRow,
})

Implementation

LabelModel({
  required this.images,
  this.quantity = 1,
  this.labelPerRow,
});