detectFaceInImage method
Implementation
static Future<Face> detectFaceInImage({@required String image}) async {
String txtResult = "";
txtResult = await Veridflutterplugin.channel
.invokeMethod('detectFaceInImage', {"image": image});
Face objFaceResult = Face.fromJson(decodeResult(pencoded: txtResult));
return objFaceResult;
}