decodeMultiple method

  1. @override
List<Result> decodeMultiple(
  1. BinaryBitmap image, [
  2. Map<DecodeHintType, Object>? hints
])
override

Implementation

@override
List<Result> decodeMultiple(
  BinaryBitmap image, [
  Map<DecodeHintType, Object>? hints,
]) {
  try {
    return _decodeStatic(image, hints, true);
  } on FormatsException catch (_) {
    throw NotFoundException.instance;
  } on ChecksumException catch (_) {
    throw NotFoundException.instance;
  }
}