CatcherScreenshot constructor

const CatcherScreenshot({
  1. Key? key,
  2. required Widget child,
  3. required Catcher catcher,
})

Implementation

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