queryPrefix property
String?
get
queryPrefix
Matches if the query segment of the URL starts with a specified string.
Implementation
String? get queryPrefix => _wrapped.queryPrefix;
set
queryPrefix
(String? v)
Implementation
set queryPrefix(String? v) {
_wrapped.queryPrefix = v;
}