init static method
Initializes the ReactrStorage with SharedPreferences instance. This should be called once at app startup, preferably in ReactrMaterialApp.
Implementation
static Future<void> init() async {
_prefs = await SharedPreferences.getInstance();
_isInitialized = true;
}