iq/lib/app/modules/notificationsScreen/bindings/notifications_screen_bindin...

13 lines
289 B
Dart

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