port property

String? get port

The new port for the request. If empty, the existing port is cleared.

Implementation

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

Implementation

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