has method

bool has(
  1. String key
)

Whether the current URL contains key.

Implementation

bool has(String key) {
  return _uri.queryParameters.containsKey(key);
}