instance property

SharedPreferences get instance

Implementation

static SharedPreferences get instance {
  if (_prefs == null) {
    throw Exception("Prefs not initialized. Call Prefs.init() first.");
  }
  return _prefs!;
}