BoundingBox constructor
const
BoundingBox({})
Creates a bounding box with four corner points.
Points should be in order: top-left, top-right, bottom-right, bottom-left.
Implementation
const BoundingBox({
required this.topLeft,
required this.topRight,
required this.bottomRight,
required this.bottomLeft,
});