GoogleApiKeyApi constructor

GoogleApiKeyApi(
  1. String identifier,
  2. String apiKey,
  3. String clientId,
  4. String redirectUrl, {
  5. String authKey = "key",
  6. AuthLocation authLocation = AuthLocation.query,
  7. String clientSecret = "native",
  8. List<String>? scopes,
  9. Client? client,
  10. Converter? converter,
  11. AuthStorage? authStorage,
})

Implementation

GoogleApiKeyApi(
    String identifier, this.apiKey, String clientId, String redirectUrl,
    {this.authKey = "key",
    this.authLocation = AuthLocation.query,
    String clientSecret = "native",
    List<String>? scopes,
    http.Client? client,
    Converter? converter,
    AuthStorage? authStorage})
    : super(identifier, clientId, redirectUrl,
          clientSecret: clientSecret,
          client: client,
          scopes: scopes,
          converter: converter,
          authStorage: authStorage) {}