matchFaces method

Future<MatchFacesResponse> matchFaces(
  1. MatchFacesRequest request, {
  2. MatchFacesConfig? config,
})

Implementation

Future<MatchFacesResponse> matchFaces(
  MatchFacesRequest request, {
  MatchFacesConfig? config,
}) async {
  var response = await _bridge.invokeMethod("matchFaces", [
    request.toJson(),
    config?.toJson(),
  ]);
  return MatchFacesResponse.fromJson(_decode(response))!;
}