This commit is contained in:
jayesh
2024-07-12 09:14:15 +05:30
parent efb9f7c4c6
commit 2345ce8496
23 changed files with 292 additions and 302 deletions

View File

@@ -1,10 +1,10 @@
class ApiEndpoints {
static const base="https://tanami.betadelivery.com/";
static const base = "https://tanami.betadelivery.com/";
static const baseurl =
"https://tanami.betadelivery.com/api/development/v1/"; //App Base url
static const getcountryurl = baseurl + "country/getAllCountry";
static const requestotpapi=baseurl +"auth/public/register";
static const requestresendotp=baseurl+"auth/public/resend-otp";
static const verifyotp=baseurl+"auth/public/verify-otp";
static const getcountryurl = "${baseurl}country/getAllCountry";
static const requestotpapi = "${baseurl}auth/public/register";
static const requestresendotp = "${baseurl}auth/public/resend-otp";
static const verifyotp = "${baseurl}auth/public/verify-otp";
}