host property
The value of the hostHeader header, if any.
Implementation
get host => value('host');
The value of the hostHeader header, if any.
Implementation
set host(String? value) {
if (value != null) {
set('host', value);
} else {
_headers.remove('host');
}
}