14 lines
386 B
Dart
14 lines
386 B
Dart
// lib/services/air_api_service.dart
|
|
|
|
import 'package:environment_monitoring_app/services/base_api_service.dart';
|
|
|
|
class AirApiService {
|
|
final BaseApiService _baseService = BaseApiService();
|
|
|
|
// You can add methods for air-related API calls here in the future
|
|
// For example:
|
|
// Future<Map<String, dynamic>> getAirQualityData() {
|
|
// return _baseService.get('air/dashboard');
|
|
// }
|
|
}
|