Skip to content

Instantly share code, notes, and snippets.

@shaon2016
Created June 19, 2021 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shaon2016/3c70aab264d4997c2ca3eb4d156c61f4 to your computer and use it in GitHub Desktop.
Save shaon2016/3c70aab264d4997c2ca3eb4d156c61f4 to your computer and use it in GitHub Desktop.
import 'package:clean_architecture/feature/home/controller/HomeController.dart';
import 'package:get/get.dart';
class HomeBinding extends Bindings {
@override
void dependencies() {
Get.lazyPut<HomeController>(() => HomeController());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment