ProxyDetails constructor

ProxyDetails({
  1. required String name,
  2. required int port,
  3. required ProxyType type,
})

Creates a new instance of ProxyDetails.

Parameters

  • IN name: The name of the proxy.
  • IN port: The port of the proxy.
  • IN type: The type of the proxy.

Implementation

ProxyDetails({
  required this.name,
  required this.port,
  required this.type,
});