sendTerminalWindowChange method

void sendTerminalWindowChange({
  1. required int width,
  2. required int height,
  3. required int pixelWidth,
  4. required int pixelHeight,
})

Implementation

void sendTerminalWindowChange({
  required int width,
  required int height,
  required int pixelWidth,
  required int pixelHeight,
}) {
  sendMessage(
    SSH_Message_Channel_Request.windowChange(
      recipientChannel: remoteId,
      termWidth: width,
      termHeight: height,
      termPixelWidth: pixelWidth,
      termPixelHeight: pixelHeight,
    ),
  );
}