query<T> function

FromRequestParts<T> query<T>(
  1. String name
)

Reads one query value, coerced to T. A nullable T makes it optional.

Implementation

FromRequestParts<T> query<T>(String name) => QueryExtractable<T>(name);