resize method

void resize(
  1. int cols,
  2. int rows
)

Forwards a terminal resize to the remote PTY.

Implementation

void resize(int cols, int rows) => _session.resize(cols: cols, rows: rows);