ProxyDto constructor

ProxyDto({
  1. String? host,
  2. String? port,
  3. required String type,
  4. String? user,
  5. String? password,
})

Implementation

ProxyDto({
  this.host,
  this.port,
  required this.type,
  this.user,
  this.password,
});