clearAll static method
Clears all values from shared preferences.
Implementation
static Future<void> clearAll() async {
final SharedPreferences prefs = await SharedPreferences.getInstance();
await prefs.clear();
}
Clears all values from shared preferences.
static Future<void> clearAll() async {
final SharedPreferences prefs = await SharedPreferences.getInstance();
await prefs.clear();
}