clearCache method

Future<void> clearCache()

Implementation

Future<void> clearCache() async {
  final prefs = await SharedPreferences.getInstance();
  await prefs.remove(_cacheKeyResult);
  await prefs.remove(_cacheKeyTarget);
}