Screenshot constructor

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

Implementation

const Screenshot({
  Key? key,
  required this.child,
  required this.controller,
}) : super(key: key);