port property

int? port

Implementation

int? get port => _port;
void port=(int? value)

Implementation

set port(int? value) {
  _port = (value == 0
      ? value
      : (value != null)
          ? utils.parseInt(value.toString(), 10)
          : null)!;
}