port property

int get port
inherited

The URI port number.

Implementation

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

Implementation

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