OAuthApiDeclaration constructor

const OAuthApiDeclaration(
  1. String name,
  2. String clientId,
  3. String clientSecret,
  4. String tokenUrl,
  5. String authorizationUrl,
  6. String redirectUrl, {
  7. String baseUrl = "/",
  8. List<String>? scopes,
})

Implementation

const OAuthApiDeclaration(String name, this.clientId, this.clientSecret,
    this.tokenUrl, this.authorizationUrl, this.redirectUrl,
    {String baseUrl = "/", this.scopes})
    : super(name, baseUrl: baseUrl);