port property

  1. @override
int? port
override

The value of the port part of the hostHeader header, if any.

Implementation

@override
int? get port {
  host; // Parse it
  return _host?.port;
}
void port=(int? _port)
inherited

The value of the port part of the hostHeader header, if any.

Implementation

int? port;