clearCache method

Future<void> clearCache()

Implementation

Future<void> clearCache() async {
  final prefs = await sharedPreferences;
  await prefs.remove('projectConfig');
  await prefs.remove('lastUpdated');
}