FaceAuthenticationResult.fromJson constructor
FaceAuthenticationResult.fromJson(
- dynamic json
Implementation
factory FaceAuthenticationResult.fromJson(dynamic json) {
return FaceAuthenticationResult(FaceAuthenticationStatus.values
.byName(json['faceAuthenticationStatus']));
}