initStorageGlobal static method
Implementation
static Future<void> initStorageGlobal() async {
if (_isStorageInitialized) return;
try {
await GetStorage.init();
_isStorageInitialized = true;
} catch (_) {}
}
static Future<void> initStorageGlobal() async {
if (_isStorageInitialized) return;
try {
await GetStorage.init();
_isStorageInitialized = true;
} catch (_) {}
}