@@ -695,7 +695,7 @@ Instead of instantiating your class within the class you are using, you are inst
So you can use your controller (or class Bloc) normally
```dart
controller.fetchApi();// Rather Controller controller = Controller();
controller.fetchApi();
```
Imagine that you have navigated through numerous routes, and you need a data that was left behind in your controller, you would need a state manager combined with the Provider or Get_it, correct? Not with Get. You just need to ask Get to "find" for your controller, you don't need any additional dependencies: