BoundingBoxOverlay constructor

const BoundingBoxOverlay({
  1. Key? key,
  2. required Widget builder(
    1. Size size,
    2. Offset position,
    3. double rotation
    ),
  3. required BoundingBoxController? controller,
  4. void onTap()?,
})

Implementation

const BoundingBoxOverlay({
  super.key,
  required this.builder,
  required this.controller,
  this.onTap,
});