SpotifyApiCredentials constructor

SpotifyApiCredentials(
  1. String? clientId,
  2. String? clientSecret, {
  3. String? accessToken,
  4. String? refreshToken,
  5. List<String>? scopes,
  6. DateTime? expiration,
})

Implementation

SpotifyApiCredentials(
  this.clientId,
  this.clientSecret, {
  this.accessToken,
  this.refreshToken,
  this.scopes,
  this.expiration,
}) : tokenEndpoint = Uri.parse(SpotifyApiBase._tokenUrl);