init static method

Future<void> init()

Initializes the SharedPreferences instance for local data storage.

Implementation

static Future<void> init() async {
  _prefs = await SharedPreferences.getInstance();
}