TIF_E41222181/lib/feature_student/profile/presentation/profile_binding.dart

10 lines
267 B
Dart

import 'package:absensi_qr/feature_student/profile/presentation/profile_controller.dart';
import 'package:get/get.dart';
class ProfileBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut<ProfileController>(() => ProfileController());
}
}