7 lines
265 B
Dart
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";
|
|
}
|