get bool.
static bool getBool(String key, {bool defValue: false}) { if (_prefs == null) return defValue; return _prefs?.getBool(key) ?? defValue; }