20 lines
605 B
Dart
20 lines
605 B
Dart
class Constants {
|
|
static const BASE_URL = 'https://elektronika.tm/api/';
|
|
static const BASE_URL_WEB = 'https://elektronika.tm/';
|
|
|
|
static const ASSET_PATH_SETTINGS = 'assets/settings';
|
|
static const ASSET_PATH_PROFILE = 'assets/profile';
|
|
|
|
static const DESC_ONLY = 'description_only';
|
|
static const PRODUCTS_AND_DESC = 'products_and_description';
|
|
|
|
static const PAGE_SIZE = 10;
|
|
|
|
// shared_preferences
|
|
static const IS_LOGGED_IN = 'is_logged_in';
|
|
static const TOKEN = 'token';
|
|
static const USER_NAME = 'user_name';
|
|
static const CART_LIST = 'cart_list';
|
|
static const LOCALE = 'locale';
|
|
}
|