I want to add the parameter to GetxController's onInit method, and pass it whenever the controller init, how to achieve this code?
class TestModel extends GetxController {
@override
void onInit(String token) {
fetchApi(token);
super.onInit();
}
...
}