setHost method

void setHost(
  1. String? value
)

Sets the host name or IP address.

  • value a new host name or IP address.

Implementation

void setHost(String? value) {
  return super.put('host', value);
}