RemoveAll function
Implementation
Future<void> RemoveAll() async {
final cookieNames = _cookieEntries().map((entry) => entry.$1).toSet();
for (final encodedName in cookieNames) {
_expireCookie(encodedName);
}
await RemoveAllLarge();
}
Future<void> RemoveAll() async {
final cookieNames = _cookieEntries().map((entry) => entry.$1).toSet();
for (final encodedName in cookieNames) {
_expireCookie(encodedName);
}
await RemoveAllLarge();
}