init static method

Future<Storage> init()

Implementation

static Future<Storage> init() async {
  final prefs = await SharedPreferences.getInstance();
  return PrefStorage(prefs: prefs);
}