clearSharedPreferences static method

Future<void> clearSharedPreferences()

Implementation

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