addCookie method

void addCookie(
  1. String name,
  2. String value
)

Adds a cookie to the session

Implementation

void addCookie(String name, String value) {
  cookies[name] = value;
  updateLastAccessTime();
}