clearAllPreferences static method

Future<void> clearAllPreferences()

清空所有偏好数据

Implementation

static Future<void> clearAllPreferences() async {
  final prefs = await SharedPreferences.getInstance();
  await prefs.remove(_keyStylePreferences);
  await prefs.remove(_keyColorPreferences);
  await prefs.remove(_keyPricePreferences);
  await prefs.remove(_keyDislikes);
  await prefs.remove(_keyFeedbackHistory);
}