spotube/lib/models/LocalStorageKeys.dart
Kingkor Roy Tirtho e666e25ffd Global custom hotkey support for playback control
UserPreferences provider genius access token not loading on init bug fix
2022-02-06 10:01:29 +06:00

14 lines
531 B
Dart

abstract class LocalStorageKeys {
static String clientId = 'client_id';
static String clientSecret = 'client_secret';
static String accessToken = 'access_token';
static String refreshToken = 'refresh_token';
static String expiration = "expiration";
static String geniusAccessToken = "genius_access_token";
static String themeMode = "theme_mode";
static String nextTrackHotKey = "next_track_hot_key";
static String prevTrackHotKey = "prev_track_hot_key";
static String playPauseHotKey = "play_pause_hot_key";
}