SecurityStep.fromJson constructor
SecurityStep.fromJson(
- dynamic json
Implementation
SecurityStep.fromJson(dynamic json) {
_loanServicerId = json['loanServicerId'];
_securityDetailsRequired = json['securityDetailsRequired'];
_userId = json['userId'];
if (json['securityDetails'] != null) {
_securityDetails = [];
json['securityDetails'].forEach((v) {
_securityDetails?.add(SecurityDetails.fromJson(v));
});
}
_nextAuthStep = json['nextAuthStep'];
_nextAuthStepParams = json['nextAuthStepParams'] != null
? NextAuthStepParams.fromJson(json['nextAuthStepParams'])
: null;
}