TakeScreenshot constructor

const TakeScreenshot({
  1. Key? key,
  2. required Widget child,
  3. required TakeScreenshotController controller,
  4. GlobalKey<State<StatefulWidget>>? containerKey,
})

Implementation

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