clearWardrobe static method

Future<void> clearWardrobe()

清空衣橱

Implementation

static Future<void> clearWardrobe() async {
  final prefs = await SharedPreferences.getInstance();
  await prefs.remove(_keyClothingItems);
  await prefs.remove(_keyOutfitCalendar);
}