2025-12-04 16:07:02 +01:00
|
|
|
import 'package:flutter_dotenv/flutter_dotenv.dart';
|
|
|
|
|
|
|
|
|
|
class Env {
|
|
|
|
|
static String get apiBaseUrl => dotenv.env['API_BASE_URL'] ?? '';
|
2025-12-09 10:08:36 +01:00
|
|
|
static String get apiOrigin => dotenv.env['API_ORIGIN'] ?? '';
|
2025-12-04 16:07:02 +01:00
|
|
|
|
|
|
|
|
// static String get apiKey => dotenv.env['API_KEY'] ?? '';
|
|
|
|
|
}
|