QueenFruits/Mobile Commerce/lib/core/constant/app_key.dart

16 lines
790 B
Dart

class AppKey {
static const String AUTH_TOKEN = 'auth_token';
static const String TENANT_CODE = 'tenant_code';
static const String OUTLET_ID = 'outlet_id';
static const String OUTLET_NAME = 'outlet_name';
static const String OUTLET_PHONE = 'outlet_phone';
static const String OUTLET_LOCATION = 'outlet_location';
static const String OUTLET_LATITUDE = 'outlet_latitude';
static const String OUTLET_LONGITUDE = 'outlet_longitude';
static const String CUSTOMER_LOGIN = 'customer_login';
static const String CUSTOMER_ID = 'customer_id';
static const String CUSTOMER_NAME = 'customer_name';
static const String CUSTOMER_EMAIL = 'customer_email';
static const String CUSTOMER_PHONE = 'customer_phone';
static const String CART_ITEM_BY_OUTLET = 'cart_item_by_outlet';
}