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