clear method

void clear()

Clears the cache.

Implementation

void clear() async {
  final sharedPreferences = await SharedPreferences.getInstance();
  await sharedPreferences.clear();
}