query property
String?
get
query
The new query for the request. Should be either empty, in which case the existing query is cleared; or should begin with '?'.
Implementation
String? get query => _wrapped.query;
set
query
(String? v)
Implementation
set query(String? v) {
_wrapped.query = v;
}