hostPrefix property

String? get hostPrefix

Matches if the host name of the URL starts with a specified string.

Implementation

String? get hostPrefix => _wrapped.hostPrefix;
set hostPrefix (String? v)

Implementation

set hostPrefix(String? v) {
  _wrapped.hostPrefix = v;
}