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