CameraFocusPoint constructor

const CameraFocusPoint({
  1. Key? key,
  2. required double size,
  3. required Color color,
})

Implementation

const CameraFocusPoint({
  super.key,
  required this.size,
  required this.color,
});