host property

String host
inherited

The URI host, including sub-domains and the tld.

Implementation

String get host => _uri.host;
void host=(String host)
inherited

Implementation

set host(String host) {
  _uri = _uri.replace(host: host);
}