callItemLabelApi method

void callItemLabelApi({
  1. String? apiKey,
  2. String? token,
  3. required Uint8List image,
})

Implementation

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