init static method

Future init()

Initializes the SharedPreferences instance for local data storage.

Implementation

static Future init() async {
  _prefs = await SharedPreferences.getInstance();
  await _initializeDefaultData();
}