boundingBoxInclusive property
PRectangle?
get
boundingBoxInclusive
Implementation
PRectangle? get boundingBoxInclusive {
var bb = boundingBox;
if (bb == null) return null;
return PRectangle(bb.x, bb.y, bb.width + 1, bb.height + 1);
}