RequestAuthSecurityStep.fromJson constructor

RequestAuthSecurityStep.fromJson(
  1. dynamic json
)

Implementation

RequestAuthSecurityStep.fromJson(dynamic json) {
  _userId = json['userId'];
  _authStep = json['authStep'];
  _authStepParams =
      json['authStepParams'] != null ? AuthStepParams.fromJson(json['authStepParams']) : null;
  _loanServicerId = json['loanServicerId'];
  _loginDetails =
      json['loginDetails'] != null ? LoginSecurityDetails.fromJson(json['loginDetails']) : null;
}