query<T> method

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

One query value, coerced to T.

A nullable T makes it optional; a non-nullable one rejects with 400 when the key is absent.

Implementation

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