clearSharedPreferences static method
dynamic
clearSharedPreferences()
Implementation
static clearSharedPreferences() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
await prefs.clear();
return true;
}