clear method

void clear({
  1. String path = '/',
})

Removes all currently visible cookies for path.

Implementation

void clear({String path = '/'}) {
  for (final name in readAll().keys) {
    remove(name, path: path);
  }
}