Socks5Link constructor

const Socks5Link({
  1. required String server,
  2. required int port,
  3. String? username,
  4. String? password,
})

Creates a new Socks5Link object.

Implementation

const Socks5Link({
  required this.server,
  required this.port,
  this.username,
  this.password,
});