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