FaceAuthenticationResult.fromJson constructor

FaceAuthenticationResult.fromJson(
  1. dynamic json
)

Implementation

factory FaceAuthenticationResult.fromJson(dynamic json) {
  return FaceAuthenticationResult(EnumTransform.valueOf(
      FaceAuthenticationStatus.values, json['faceAuthenticationStatus']));
}