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