clear method
Removes all currently visible cookies for path.
Implementation
void clear({String path = '/'}) {
for (final name in readAll().keys) {
remove(name, path: path);
}
}
Removes all currently visible cookies for path.
void clear({String path = '/'}) {
for (final name in readAll().keys) {
remove(name, path: path);
}
}