OAuthApiKeyApi constructor

OAuthApiKeyApi(
  1. String identifier,
  2. String apiKey,
  3. String authKey,
  4. AuthLocation authLocation,
  5. String clientId,
  6. String clientSecret,
  7. String tokenUrl,
  8. String authorizationUrl,
  9. String redirectUrl, {
  10. List<String>? scopes,
  11. Client? client,
  12. Converter? converter,
  13. AuthStorage? authStorage,
})

Implementation

OAuthApiKeyApi(
    String identifier,
    this.apiKey,
    this.authKey,
    this.authLocation,
    String clientId,
    String clientSecret,
    String tokenUrl,
    String authorizationUrl,
    String redirectUrl,
    {List<String>? scopes,
    http.Client? client,
    Converter? converter,
    AuthStorage? authStorage})
    : super(identifier, clientId, clientSecret, tokenUrl, authorizationUrl,
          redirectUrl,
          client: client,
          scopes: scopes,
          converter: converter,
          authStorage: authStorage) {}