GeneralPwdSafety.fromJson constructor

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

Implementation

GeneralPwdSafety.fromJson(Map<String, dynamic> json) {
  if (json['PwdReset'] != null) {
    pwdReset = <PwdReset>[];
    json['PwdReset'].forEach((v) {
      pwdReset!.add(PwdReset.fromJson(v));
    });
  }
  securityEmail = json['SecurityEmail'];
  securityPhone = json['SecurityPhone'];
  tipPageHide = json['TipPageHide'];
  verifyCodeRestorePwdType = json['VerifyCodeRestorePwdType'];
}