UserCredentials constructor

UserCredentials({
  1. String? password,
  2. String? secretManagerStoredPassword,
  3. String? secretManagerStoredSecurityToken,
  4. String? securityToken,
  5. String? username,
})

Implementation

UserCredentials({
  this.password,
  this.secretManagerStoredPassword,
  this.secretManagerStoredSecurityToken,
  this.securityToken,
  this.username,
});