resize method

void resize({
  1. required int cols,
  2. required int rows,
})

Resizes the remote terminal.

Implementation

void resize({required int cols, required int rows}) => _channel.sendControl(
  ChannelResize(channel: _channel.id, cols: cols, rows: rows),
);