I have a Flutter project, and I want to delete all Getx
's GetxController
that I injected using:
Get.put(/*...*/);
Get.lazyPut(/*...*/);
is this possible with Getx, and how?
I have a Flutter project, and I want to delete all Getx
's GetxController
that I injected using:
Get.put(/*...*/);
Get.lazyPut(/*...*/);
is this possible with Getx, and how?
Try the following code:
Get.deleteAll();