callItemLabelApi method
Implementation
void callItemLabelApi(
{String? apiKey,
String? token,
required Uint8List image}) async {
await _channel.invokeMethod('callItemLabelAPI', {
'apiKey': apiKey,
'token': token,
'byteArrayImage': image,
});
}