删除指定键的数据
Future<bool> remove(String key) async { final prefs = await _sharedPreferences; return prefs.remove(key); }