RequestAuthSecurityStep constructor

RequestAuthSecurityStep({
  1. String? userId,
  2. String? authStep,
  3. AuthStepParams? authStepParams,
  4. String? loanServicerId,
  5. LoginSecurityDetails? loginDetails,
})

Implementation

RequestAuthSecurityStep({
  String? userId,
  String? authStep,
  AuthStepParams? authStepParams,
  String? loanServicerId,
  LoginSecurityDetails? loginDetails,
}) {
  _userId = userId;
  _authStep = authStep;
  _authStepParams = authStepParams;
  _loanServicerId = loanServicerId;
  _loginDetails = loginDetails;
}