You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.2 KiB
Dart
27 lines
1.2 KiB
Dart
class ApiConsts {
|
|
//static String baseUrl = "http://10.200.204.20:2801/"; // Local server
|
|
static String baseUrl = "https://mdlaboratories.com"; // production server
|
|
static String baseUrlServices = baseUrl + "/mc/"; // production server
|
|
// static String baseUrlServices = "https://api.cssynapses.com/tangheem/"; // Live server
|
|
static String BasicOTP = baseUrlServices + "api/Register/BasicOTP";
|
|
static String BasicVerify = baseUrlServices + "api/Register/BasicVerify";
|
|
static String BasicComplete = baseUrlServices + "api/Register/BasicComplete";
|
|
|
|
static String Login_V1 = baseUrlServices + "api/Account/Login_V1";
|
|
static String Login_V2_OTP = baseUrlServices + "api/Account/Login_V2_OTP";
|
|
static String Login_V2_OTPVerify = baseUrlServices + "api/Account/Login_V2_OTPVerify";
|
|
static String user = baseUrlServices + "api/User/";
|
|
static String GetAllCountry = baseUrlServices + "api/Master/Country_Get";
|
|
}
|
|
|
|
|
|
class GlobalConsts {
|
|
static String isRememberMe = "remember_me";
|
|
static String email = "email";
|
|
static String password = "password";
|
|
static String bookmark = "bookmark";
|
|
static String fontZoomSize = "font_zoom_size";
|
|
static String welcomeVideoUrl = "welcomeVideoUrl";
|
|
static String doNotShowWelcomeVideo = "doNotShowWelcomeVideo";
|
|
}
|