callILMatchingAPI method
void
callILMatchingAPI({})
Implementation
void callILMatchingAPI(
{String? apiKey,
String? token,
required Uint8List image,
bool shouldResizeImage = true,
required List<String> barcodes,
required Map<String, dynamic> onDeviceResponse,}) async {
await _channel.invokeMethod('callILMatchingAPI', {
'apiKey': apiKey,
'token': token,
'byteArrayImage': image,
'shouldResizeImage': shouldResizeImage,
'barcodes': barcodes,
'onDeviceResponse': jsonEncode(onDeviceResponse),
});
}