mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-12 23:45:18 +00:00
8 lines
262 B
Dart
8 lines
262 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";
|
|
}
|