renderRect property

Rect renderRect

The Rect representing the size of the underlying terminal that this UI is rendering to.

Implementation

Rect get renderRect {
  if (_terminal == null) return Rect.nill;
  return Rect(Vec2.zero, _terminal!.size);
}