AuthConfig constructor

AuthConfig({
  1. String? scope,
  2. String? username,
  3. String? password,
  4. String? grantType,
})

Implementation

AuthConfig({
  this.scope,
  this.username,
  this.password,
  this.grantType,
});