resize method
void
resize()
override
notifies the Terminal about a resize that happened. The Terminal will do any resize / reflow logic and notify the backend about the resize
Implementation
@override
void resize(
int newWidth, int newHeight, int newPixelWidth, int newPixelHeight) {
_sendPort?.send([
_IsolateCommand.resize,
newWidth,
newHeight,
newPixelWidth,
newPixelHeight
]);
}