resize method

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

Resize the pseudo-terminal.

Implementation

@override
void resize(int rows, int cols) {
  pty_library.pty_resize(_handle, rows, cols);
}