clear method

Future<void> clear(
  1. String key
)

Removes the cached entry for key.

Implementation

Future<void> clear(String key) async {
  final prefs = await SharedPreferences.getInstance();
  await prefs.remove('$_prefix$key');
}