Saves a bool value to storage.
static Future<bool> saveBool(String key, bool value) async { return await _prefs?.setBool(key, value) ?? false; }