cookie<T> function
Reads one cookie, coerced to T. A nullable T makes it optional.
Implementation
FromRequestParts<T> cookie<T>(String name) => CookieExtractable<T>(name);
Reads one cookie, coerced to T. A nullable T makes it optional.
FromRequestParts<T> cookie<T>(String name) => CookieExtractable<T>(name);