static Object? get(String key) { if (_preferences == null) { debugPrint('StorageUtil, need call await init() first'); return null; } Object? value = _preferences!.get(key); return value; }