2025-12-30 15:02:51 +05:30

7 lines
265 B
Dart

class ApiConstants {
// Use 10.0.2.2 for Android Emulator to access localhost of the machine
// Use localhost for iOS Simulator
static const String baseUrl = "http://10.0.2.2:3050/api";
static const String liveBaseUrl = "https://api.socialbuddy.co/api";
}