FaceMatchResult constructor

FaceMatchResult(
  1. Map dataMap
)

Implementation

FaceMatchResult(Map<dynamic, dynamic> dataMap) : super(dataMap) {
  congruence = dataMap.getValue<double>(Inbound.congruence);
  liveness = dataMap.getValue<double>(Inbound.liveness);
  selfieUrl = dataMap.getValue<String>(Inbound.selfieUrl);
}