AccountRecoveryConfiguration constructor

AccountRecoveryConfiguration(
  1. dynamic token,
  2. dynamic enrollmentIdentifier,
  3. dynamic nonce,
  4. dynamic isRootedDeviceAllowed,
  5. dynamic isSecuredWindowsDisabled,
  6. dynamic minimumMatchLevel,
  7. dynamic maxAttempts,
  8. dynamic isReturnDataForIncompleteSession,
  9. dynamic appearanceMode,
)

Implementation

AccountRecoveryConfiguration(
    token,
    enrollmentIdentifier,
    nonce,
    isRootedDeviceAllowed,
    isSecuredWindowsDisabled,
    minimumMatchLevel,
    maxAttempts,
    isReturnDataForIncompleteSession,
    appearanceMode) {
  this.token = token;
  this.enrollmentIdentifier = enrollmentIdentifier;
  this.nonce = nonce;
  this.isRootedDeviceAllowed = isRootedDeviceAllowed;
  this.isSecuredWindowsDisabled = isSecuredWindowsDisabled;
  this.minimumMatchLevel = minimumMatchLevel;
  this.maxAttempts = maxAttempts;
  this.isReturnDataForIncompleteSession = isReturnDataForIncompleteSession;
  this.appearanceMode = appearanceMode;
}