developer_options_binding.dart
507 Bytes
import 'package:get/get.dart';
import '../../../../core/services/health_raw_data_core_service.dart';
import '../../../../data/local/user_preferences_storage.dart';
import '../controllers/developer_options_controller.dart';
class DeveloperOptionsBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut<DeveloperOptionsController>(
() => DeveloperOptionsController(
Get.find<UserPreferencesStorage>(),
Get.find<HealthRawDataCoreService>(),
),
);
}
}