23 lines
857 B
Dart
23 lines
857 B
Dart
|
|
class Constants {
|
|
static const int FONT_GOOGLE = 0xe800;
|
|
static const int FONT_ALEXA = 0xe801;
|
|
static const int FONT_APPLE = 0xe802;
|
|
static const int FONT_EBAY = 0xe803;
|
|
static const int FONT_QUICKBOOKS = 0xe804;
|
|
static const int FONT_SHOPIFY = 0xe805;
|
|
static const int FONT_MINIPOS = 0xe807;
|
|
static const int FONT_WINDOWS = 0xe80a;
|
|
static const int FONT_ANDROID = 0xe80b;
|
|
static const int FONT_APPLE_LOGO = 0xe80c;
|
|
static const int FONT_IOS = 0xe80d;
|
|
static const int FONT_UBUNTU = 0xe80e;
|
|
static const int FONT_WISETRONIC = 0xe812;
|
|
static const int FONT_TOPTONS = 0xe813;
|
|
|
|
static const bool DEBUG = false;
|
|
static const BASE_API_URL = 'https://api.minipos.us/';
|
|
static const String API_SECRET = 'pei326sami1223HellowWorldabcdEd';
|
|
static const KEY_USER_ID = 'user_id';
|
|
static const KEY_ACCESS_TOKEN = 'access_token';
|
|
} |