clearStoredCookies static method

Future clearStoredCookies(
  1. String hostname
)

Removes hostname and its associated value, if present, from the cache.

Implementation

static Future clearStoredCookies(String hostname) async {
  var hostnameHash = Common.hashStringSHA256(hostname);
  await Common.storageRemove('cookies-$hostnameHash');
}