ContentRecorder constructor

const ContentRecorder({
  1. Key? key,
  2. required Widget? child,
  3. required ContentRecorderController controller,
})

Implementation

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