removeCookie static method

void removeCookie()

Removes the stored DataDome cookie.

Implementation

static void removeCookie() async {
  final prefs = await SharedPreferences.getInstance();
  prefs.remove('co.datadome.cookie');
  lastCookieValue = "";
}