Getx Storage return null whenever app starts – Flutter
I have initilized GetStorage() in main() and calling .read() in onReady dunction of GetX Controller but always get null! Future<void> main() async { await GetStorage.init(); runApp(const App()); } class AuthenticationRepository extends GetxController { static AuthenticationRepository get instance => Get.find(); ///…