FaceSearchSettings.fromJson constructor
Implementation
factory FaceSearchSettings.fromJson(Map<String, dynamic> json) {
return FaceSearchSettings(
collectionId: json['CollectionId'] as String?,
faceMatchThreshold: json['FaceMatchThreshold'] as double?,
);
}