SSHChannelController constructor
SSHChannelController({})
Implementation
SSHChannelController({
required this.localId,
required this.localMaximumPacketSize,
required this.localInitialWindowSize,
required this.remoteId,
required this.remoteInitialWindowSize,
required this.remoteMaximumPacketSize,
required this.sendMessage,
this.printDebug,
}) {
if (remoteInitialWindowSize > 0) {
_uploadLoop.activate();
}
}