AuthConfig constructor

AuthConfig({
  1. List<ConfigVariable>? additionalVariables,
  2. String? authKey,
  3. String? authType,
  4. Oauth2AuthCodeFlow? oauth2AuthCodeFlow,
  5. Oauth2ClientCredentials? oauth2ClientCredentials,
  6. Oauth2JwtBearer? oauth2JwtBearer,
  7. SshPublicKey? sshPublicKey,
  8. UserPassword? userPassword,
})

Implementation

AuthConfig({
  this.additionalVariables,
  this.authKey,
  this.authType,
  this.oauth2AuthCodeFlow,
  this.oauth2ClientCredentials,
  this.oauth2JwtBearer,
  this.sshPublicKey,
  this.userPassword,
});