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