barcode_capture.dart 219 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 import 'dart:typed_data'; import 'package:mobile_scanner/src/barcode.dart'; class BarcodeCapture { List<Barcode> barcodes; Uint8List? image; BarcodeCapture({ required this.barcodes, this.image, }); }