runModelOnByteArray method
Implementation
@override
Future<String> runModelOnByteArray(Uint8List uint8list, double confidence) async {
final labels = await methodChannel.invokeMethod<String>('runOnBytesList', {
"byteImage": uint8list,
"confidence": confidence
});
return labels.toString();
}