BiometricStage.fromJson constructor

BiometricStage.fromJson(
  1. Map<String, dynamic> json
)

Implementation

BiometricStage.fromJson(Map<String, dynamic> json) {
  name = json["name"];
  type = Type.getType(json["type"]);
  showGuidance = json["showGuidance"];
  useLiveCapture = json["liveCapture"];
  useMlAssistance = json["useMLAssistance"];
  retryLimit = json["retryLimit"];
}