getCookies method

Map<String, String> getCookies()

Returns the cookies received from the request. The return value does not include cookies added after the request was received.

Implementation

Map<String, String> getCookies() {
  return _parseCookieHeader(this);
}