TIF_E41211491/lib/app/modules/profile/bindings/profile_binding.dart

13 lines
240 B
Dart

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