RequestAuthAddSteps constructor

RequestAuthAddSteps({
  1. String? loanServicerName,
  2. String? userId,
  3. String? authStep,
  4. AuthStepParams? authStepParams,
  5. String? loanServicerId,
  6. LoginSecurityDetails? loginDetails,
  7. int? time,
  8. String? liabilityType,
})

Implementation

RequestAuthAddSteps({
  String? loanServicerName,
  String? userId,
  String? authStep,
  AuthStepParams? authStepParams,
  String? loanServicerId,
  LoginSecurityDetails? loginDetails,
  int? time,
  String? liabilityType,
}) {
  _loanServicerName = loanServicerName;
  _userId = userId;
  _authStep = authStep;
  _authStepParams = authStepParams;
  _loanServicerId = loanServicerId;
  _loginDetails = loginDetails;
  _time = time;
  _liabilityType = liabilityType;
}