sendTerminalWindowChange method

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

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,
  );
}