CameraFocusPointPainter constructor

const CameraFocusPointPainter({
  1. required double size,
  2. required Color color,
  3. double radius = 2,
  4. double strokeWidth = 2,
})

Implementation

const CameraFocusPointPainter({
  required this.size,
  required this.color,
  this.radius = 2,
  this.strokeWidth = 2,
}) : assert(size > 0);