Barcode constructor
Barcode({
- required BarcodeType type,
- required BarcodeFormat format,
- required String? displayValue,
- required String? rawValue,
- required Uint8List? rawBytes,
- required Rect? boundingBox,
- required List<
Point< ? cornerPoints,int> > - required BarcodeValue? value,
Constructor to create an instance of Barcode.
Implementation
Barcode({
required this.type,
required this.format,
required this.displayValue,
required this.rawValue,
required this.rawBytes,
required this.boundingBox,
required this.cornerPoints,
required this.value,
});