uriQuery method

String? uriQuery(
  1. String key
)

Returns the value of a query parameter key from the string URL.

Implementation

String? uriQuery(String key) => uri.queryParameters[key];