WebServerConnection constructor

WebServerConnection({
  1. required String host,
  2. int? port,
  3. required String sshUser,
  4. String? sshPrivateKeyBase64,
  5. String? sshPrivateKeyPassphrase,
})

Implementation

WebServerConnection({
  required this.host,
  int? port,
  required this.sshUser,
  this.sshPrivateKeyBase64,
  this.sshPrivateKeyPassphrase,
}) : port = port ?? 22;