public static int GetInt(string key, int defaultValue = 0) { return(Prefs.GetInt(key, defaultValue)); }
public static bool GetBool(string key, bool defaultValue = false) { return(Prefs.GetInt(key, defaultValue ? 1 : 0) > 0); }