clear method
void
clear()
Clears the cache.
Implementation
void clear() async {
final sharedPreferences = await SharedPreferences.getInstance();
await sharedPreferences.clear();
}
Clears the cache.
void clear() async {
final sharedPreferences = await SharedPreferences.getInstance();
await sharedPreferences.clear();
}