RemoveAll function

Future<void> RemoveAll()

Implementation

Future<void> RemoveAll() async {
  final cookieNames = _cookieEntries().map((entry) => entry.$1).toSet();

  for (final encodedName in cookieNames) {
    _expireCookie(encodedName);
  }

  await RemoveAllLarge();
}