BiometricStage.fromJson constructor
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"];
}