clearCache static method

void clearCache()

Clears the cached mission manifest data

Implementation

static void clearCache() async {
  // Getting an instance of SharedPreferences
  SharedPreferences prefs = await SharedPreferences.getInstance();

  // Removing the cached data
  prefs.remove('manifest');
}