cookie<T> method

Future<T> cookie<T>(
  1. String name
)

One cookie, coerced to T. A nullable T makes it optional.

Implementation

Future<T> cookie<T>(String name) => extractors.cookie<T>(name).require(this);