PwdQuestionSaveModel.fromJson constructor

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

Implementation

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