hostname property

String? get hostname

A literal IP address or host name that can be resolved to an IP address.

@default {"127.0.0.1"}

Implementation

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

Implementation

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