news_getx/lib/modules/not_found/not_found_binding.dart

11 lines
197 B
Dart

import 'package:get/get.dart';
import 'not_found_controller.dart';
class NotFoundBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut(() => NotFoundController());
}
}