port property

int? get port

The port of the proxy server. Defaults to a port that depends on the scheme.

Implementation

int? get port => _wrapped.port;
set port (int? v)

Implementation

set port(int? v) {
  _wrapped.port = v;
}