CameraOverlay constructor

const CameraOverlay({
  1. Key? key,
  2. required Duration videoDuration,
  3. required CamController controller,
  4. required PlaygroundController playgroundController,
})

Implementation

const CameraOverlay({
  Key? key,
  required this.videoDuration,
  required this.controller,
  required this.playgroundController,
}) : super(key: key);