InternalLinkTypeProxy constructor

const InternalLinkTypeProxy({
  1. required String server,
  2. required int port,
  3. required ProxyType type,
  4. dynamic extra,
  5. int? clientId,
})

The link is a link to a proxy. Call addProxy with the given parameters to process the link and add the proxy

Implementation

const InternalLinkTypeProxy({
  required this.server,
  required this.port,
  required this.type,
  this.extra,
  this.clientId,
});