EditProxy constructor

const EditProxy({
  1. required int proxyId,
  2. required String server,
  3. required int port,
  4. required bool enable,
  5. required ProxyType type,
})

Edits an existing proxy server for network requests. Can be called before authorization

Implementation

const EditProxy({
  required this.proxyId,
  required this.server,
  required this.port,
  required this.enable,
  required this.type,
});