SOCKS5Config constructor

SOCKS5Config({
  1. String? runId,
  2. int? port,
  3. String? password,
  4. String? encType,
  5. String? description,
})

Implementation

factory SOCKS5Config({
  $core.String? runId,
  $core.int? port,
  $core.String? password,
  $core.String? encType,
  $core.String? description,
}) {
  final $result = create();
  if (runId != null) {
    $result.runId = runId;
  }
  if (port != null) {
    $result.port = port;
  }
  if (password != null) {
    $result.password = password;
  }
  if (encType != null) {
    $result.encType = encType;
  }
  if (description != null) {
    $result.description = description;
  }
  return $result;
}