Skip to content

Commit

Permalink
spotify_base.dart: format
Browse files Browse the repository at this point in the history
  • Loading branch information
gmpassos authored Feb 28, 2024
1 parent 49df9d3 commit 9fcbcff
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions lib/src/spotify_base.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,58 +10,58 @@ abstract class SpotifyApiBase {
'https://accounts.spotify.com/authorize';

bool _shouldWait = false;
late FutureOr<oauth2.Client> _client;

late FutureOr<oauth2.Client> _client;
FutureOr<oauth2.Client> get client => _client;

late Artists _artists;

Artists get artists => _artists;

late Albums _albums;

Albums get albums => _albums;

late Browse _browse;

Browse get browse => _browse;

late Tracks _tracks;

Tracks get tracks => _tracks;

late Playlists _playlists;

Playlists get playlists => _playlists;

late Episodes _episodes;

Episodes get episodes => _episodes;

late RecommendationsEndpoint _recommendations;

RecommendationsEndpoint get recommendations => _recommendations;

late Markets _markets;

Markets get markets => _markets;

late Users _users;

Users get users => _users;

late Search _search;

Search get search => _search;

late AudioFeatures _audioFeatures;

AudioFeatures get audioFeatures => _audioFeatures;

late AudioAnalysisEndpoint _audioAnalysis;

AudioAnalysisEndpoint get audioAnalysis => _audioAnalysis;

late Categories _categories;

Categories get categories => _categories;

late Me _me;

Me get me => _me;

late PlayerEndpoint _player;

PlayerEndpoint get player => _player;

late Shows _shows;

Shows get shows => _shows;

FutureOr<oauth2.Client> get client => _client;

SpotifyApiBase.fromClient(FutureOr<http.BaseClient> client) {
_client = client as FutureOr<oauth2.Client>;

Expand Down

0 comments on commit 9fcbcff

Please sign in to comment.