cellRect property

Rect get cellRect

Pixel rect containing terminal cells (for hit-testing after subtracting paddingX/paddingY from local coordinates).

Implementation

Rect get cellRect => Rect.fromLTWH(
      paddingX,
      paddingY,
      cellAreaWidth,
      cellAreaHeight,
    );