Proxy constructor

const Proxy({
  1. required int id,
  2. required String server,
  3. required int port,
  4. required int lastUsedDate,
  5. required bool isEnabled,
  6. required ProxyType type,
  7. dynamic extra,
  8. int? clientId,
})

Contains information about a proxy server

Implementation

const Proxy({
  required this.id,
  required this.server,
  required this.port,
  required this.lastUsedDate,
  required this.isEnabled,
  required this.type,
  this.extra,
  this.clientId,
});