Files
social-app/apps/lib/core/config/env.dart
T

13 lines
262 B
Dart
Raw Normal View History

import 'dart:io';
class Env {
static String get apiUrl {
const url = String.fromEnvironment('API_URL');
if (url.isNotEmpty) return url;
if (Platform.isAndroid) {
return 'http://10.0.2.2:5775';
}
return 'http://localhost:5775';
}
}