get method

String? get(
  1. String key
)

Returns the first value for key, or null when it is absent.

Implementation

String? get(String key) {
  return _uri.queryParameters[key];
}