BarcodeObject constructor

BarcodeObject({
  1. required String value,
  2. required String rawValue,
  3. required int typeId,
  4. required List<OcrPoint> cornerPoints,
})

Implementation

BarcodeObject({
  required this.value,
  required this.rawValue,
  required this.typeId,
  required this.cornerPoints,
});