port property

num? get port

The port number the query will be sent to.

@default {53}

Implementation

_i2.num? get port => _i3.getProperty(
      this,
      'port',
    );
set port (num? value)

Implementation

set port(_i2.num? value) {
  _i3.setProperty(
    this,
    'port',
    value ?? _i6.undefined,
  );
}