put bool. 存储sp中key的布尔值
static Future<bool>? putBool(String key, bool value) { if (_prefs == null) { return null; // return Future.value(false); } return _prefs?.setBool(key, value); }