Proxy constructor

Proxy({
  1. String? extra,
  2. int? client_id,
  3. int32? id,
  4. string? server,
  5. int32? port,
  6. int32? last_used_date,
  7. Bool? is_enabled,
  8. ProxyType? type,
})

Implementation

Proxy({
  super.extra,
  super.client_id,
  this.id,
  this.server,
  this.port,
  this.last_used_date,
  this.is_enabled,
  this.type,
});