import 'package:flutter_dotenv/flutter_dotenv.dart'; class Config { static String get apiBaseUrl => dotenv.env['API_URL'] ?? 'http://localhost:8082'; static String get apiPath => '/api'; static String get apiUrl => '$apiBaseUrl$apiPath'; }