asyncAnalyseFrame method

Future<List<MLFaceVerificationResult>> asyncAnalyseFrame(
  1. String path
)

Implementation

Future<List<MLFaceVerificationResult>> asyncAnalyseFrame(
  String path,
) async {
  final List<dynamic> res = await _channel.invokeMethod(
    'faceVer#asyncAnalyseFrame',
    <String, dynamic>{
      'path': path,
    },
  );
  return res.map((dynamic e) => MLFaceVerificationResult.fromMap(e)).toList();
}