iq/lib/app/modules/selectISP/bindings/select_isp_binding.dart

13 lines
249 B
Dart

import 'package:get/get.dart';
import '../controllers/select_isp_controller.dart';
class SelectISPBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut<SelectISPController>(
() => SelectISPController(),
);
}
}