AmazonApi constructor

AmazonApi(
  1. String identifier,
  2. String clientId,
  3. String clientSecret,
  4. String redirectUrl, {
  5. List<String>? scopes,
  6. Client? client,
  7. Converter? converter,
  8. AuthStorage? authStorage,
})

Implementation

AmazonApi(String identifier, String clientId, String clientSecret,
    String redirectUrl,
    {List<String>? scopes,
    http.Client? client,
    Converter? converter,
    AuthStorage? authStorage})
    : super(
          identifier,
          clientId,
          clientSecret,
          "https://api.amazon.com/auth/o2/token",
          "https://www.amazon.com/ap/oa",
          redirectUrl,
          client: client,
          scopes: scopes,
          converter: converter,
          authStorage: authStorage);