port property
The value of the port part of the hostHeader header, if any.
Implementation
@override
int? get port => _port;
The value of the port part of the hostHeader header, if any.
Implementation
@override
set port(int? port) {
_checkMutable();
_port = port;
_updateHostHeader();
}