create static method
Factory constructor to create a storage manager asynchronously
Implementation
static Future<StorageManager> create() async {
final prefs = await SharedPreferences.getInstance();
return StorageManager(SharedPreferencesWrapper(prefs));
}