sendTerminalWindowChange method
void
sendTerminalWindowChange({})
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,
),
);
}