A dart library for interfacing with the Spotify API.
A simple usage example:
import 'package:spotify/spotify_io.dart';
main() async {
var credentials = new SpotifyApiCredentials(clientId, clientSecret);
var spotify = new SpotifyApi(credentials);
var artist = await spotify.artists.get('0OdUWJ0sBjDrqHygGUXeCF');
}
import 'package:spotify/spotify_browser.dart';
Please file feature requests and bugs at the issue tracker.
Run pub run build_runner build
to generate JSON serilizers via json_serializable.