clear static method

Future<void> clear()

Implementation

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