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