port property

int port
inherited

The URI port number.

Implementation

int get port => _uri.port;
void port=(int port)
inherited

Implementation

set port(int port) {
  _uri = _uri.replace(port: port);
}