TKK_E32230859/lib/app/modules/home-patient/bindings/home_patient_binding.dart

13 lines
257 B
Dart

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