all property

Map<String, String> get all

Gets all cookies from the request as a map.

Implementation

Map<String, String> get all {
  if (_request == null) return {};
  return Map.fromEntries(
    _request.cookies.map((cookie) => MapEntry(cookie.name, cookie.value)),
  );
}