ContentRecorder constructor

const ContentRecorder({
  1. Key? key,
  2. bool autoDestroyController = true,
  3. required Widget? child,
  4. required ContentRecorderController controller,
})

Implementation

const ContentRecorder({
  super.key,
  this.autoDestroyController = true,
  required this.child,
  required this.controller,
});