ProxySettings constructor

ProxySettings(
  1. InternetAddress host,
  2. int port, {
  3. String? password,
  4. String? username,
})

Creates proxy settings object

Implementation

ProxySettings(
  this.host,
  this.port, {
  this.password,
  this.username,
});