PwdQuestionSaveModel.fromJson constructor
Implementation
PwdQuestionSaveModel.fromJson(Map<String, dynamic> json) {
name = json['Name'];
sessionID = json['SessionID'];
generalPwdSafety = json['General.PwdSafety'] != null
? GeneralPwdSafety.fromJson(json['General.PwdSafety'])
: null;
}