Search code examples
flutterdartflutter-getx

How to delete all Getx controllers at once?


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?


Solution

  • Try the following code:

    Get.deleteAll();