10 lines
379 B
Dart
10 lines
379 B
Dart
class ConstsApi {
|
|
static const String baseUrl = "https://project2022.amrithaa.com";
|
|
|
|
// Example endpoints
|
|
static const String home = "$baseUrl/ecomdemo/wp-json/homeapi/v1/data";
|
|
static const String allproduct = "$baseUrl/ecomdemo/wp-json/wc/v3/products";
|
|
static const String cart =
|
|
"$baseUrl/ecomdemo/wp-json/custom-cart/v1/view?cart_token=cart_66fa27d8d44e4";
|
|
}
|