host property
String?
get
host
Optional host string of the form "<hostname>[:<port>]"
. Examples:
"github.com"
"deno.land:8080"
Implementation
_i2.String? get host => _i3.getProperty(
this,
'host',
);
set
host
(String? value)
Implementation
set host(_i2.String? value) {
_i3.setProperty(
this,
'host',
value ?? _i6.undefined,
);
}