Proxy constructor

const Proxy({
  1. required String host,
  2. required int port,
  3. String? username,
  4. String? password,
})

Implementation

const Proxy({
  required this.host,
  required this.port,
  this.username,
  this.password,
});