SpotifyApi class

Accesspoint for the spotify api

Example usage:

  var credentials = SpotifyApiCredentials('my_id', 'my_secret');
  var spotify = SpotifyApi(credentials);
  var shows = spotify.shows.get('id);
  ...
Inheritance

Constructors

SpotifyApi(SpotifyApiCredentials credentials, {dynamic onCredentialsRefreshed(SpotifyApiCredentials)?})
SpotifyApi.fromAuthCodeGrant(AuthorizationCodeGrant grant, String responseUri)
SpotifyApi.fromClient(FutureOr<Client> client)
SpotifyApi.withAccessToken(String accessToken)

Properties

albums Albums
no setterinherited
artists Artists
no setterinherited
audioAnalysis AudioAnalysisEndpoint
no setterinherited
audioFeatures AudioFeatures
no setterinherited
browse Browse
no setterinherited
categories Categories
no setterinherited
client FutureOr<Client>
no setterinherited
episodes Episodes
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
markets Markets
no setterinherited
me Me
no setterinherited
player PlayerEndpoint
no setterinherited
playlists Playlists
no setterinherited
recommendations RecommendationsEndpoint
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
no setterinherited
shows Shows
no setterinherited
tracks Tracks
no setterinherited
users Users
no setterinherited

Methods

Expands shortened spotify url
inherited
getCredentials() Future<SpotifyApiCredentials>
inherited
handleResponseWithBody(Response response) String
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

asyncFromCredentials(SpotifyApiCredentials credentials, {dynamic onCredentialsRefreshed(SpotifyApiCredentials)?}) Future<SpotifyApi>
authorizationCodeGrant(SpotifyApiCredentials credentials, {String? codeVerifier, dynamic onCredentialsRefreshed(SpotifyApiCredentials)?}) → AuthorizationCodeGrant
override