9 lines
264 B
Dart
9 lines
264 B
Dart
import 'package:flutter_dotenv/flutter_dotenv.dart';
|
|
|
|
class Env {
|
|
static String get apiBaseUrl => dotenv.env['API_BASE_URL'] ?? '';
|
|
static String get apiOrigin => dotenv.env['API_ORIGIN'] ?? '';
|
|
|
|
// static String get apiKey => dotenv.env['API_KEY'] ?? '';
|
|
}
|