TIF_E41222181/lib/feature_student/schedule/presentation/schedule_binding.dart

10 lines
274 B
Dart

import 'package:absensi_qr/feature_student/schedule/presentation/schedule_controller.dart';
import 'package:get/get.dart';
class ScheduleBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut<ScheduleController>(() => ScheduleController());
}
}