clear static method

Future<void> clear()

Clear all

Implementation

static Future<void> clear() async {
  final prefs = await SharedPreferences.getInstance();
  await prefs.remove(_key);
}