FaceMatch.fromJson constructor
Implementation
factory FaceMatch.fromJson(Map<String, dynamic> json) {
return FaceMatch(
face: json['Face'] != null
? Face.fromJson(json['Face'] as Map<String, dynamic>)
: null,
similarity: json['Similarity'] as double?,
);
}