sendTerminalWindowChange method
void
sendTerminalWindowChange({})
Implementation
void sendTerminalWindowChange({
required int width,
required int height,
int pixelWidth = 0,
int pixelHeight = 0,
}) {
_controller.sendTerminalWindowChange(
width: width,
height: height,
pixelWidth: pixelWidth,
pixelHeight: pixelHeight,
);
}