makePrediction method
Implementation
Future<void> makePrediction(Uint8List byteArrayImage, List<ScannedCodeResult> barcodes) async {
await _channel.invokeMethod('makePrediction',
{'byteArrayImage': byteArrayImage, 'barcodes': barcodes.map((item) => item.toMap()).toList()});
}