urlPrefix property
String?
get
urlPrefix
Matches if the URL (without fragment identifier) starts with a specified string. Port numbers are stripped from the URL if they match the default port number.
Implementation
String? get urlPrefix => _wrapped.urlPrefix;
set
urlPrefix
(String? v)
Implementation
set urlPrefix(String? v) {
_wrapped.urlPrefix = v;
}