mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-15 09:45:22 +00:00
10 lines
208 B
Dart
10 lines
208 B
Dart
abstract class Constants {
|
|
static const String languageCode = "en";
|
|
|
|
static const String countryCode = "US";
|
|
|
|
static const double defaultPadding = 16.0;
|
|
|
|
static const String tokenKey = 'userToken';
|
|
}
|