KDLPatients/lib/app/core/config/api_config.dart

8 lines
154 B
Dart

class ApiConfig {
static const String HOST = String.fromEnvironment(
'BASE_API_URL',
);
static const BASE_API_URL = 'https://$HOST/graphql';
}