CropDragPoint constructor

const CropDragPoint({
  1. Key? key,
  2. double size = 20,
  3. Color color = Colors.blue,
})

Constructs a CropDragPoint.

Implementation

const CropDragPoint({
  super.key,
  this.size = 20,
  this.color = Colors.blue,
});