BoundingBox.flexible constructor
const
BoundingBox.flexible()
Creates a BoundingBox with no defined bounds.
This constructor initializes a bounding box with all coordinates set to null, representing a completely flexible bounding box without any restrictions on its size or position.
Implementation
const BoundingBox.flexible()
: minX = null,
maxX = null,
minY = null,
maxY = null;