build method

Widget build(
  1. Widget child
)

Implementation

Widget build(Widget child) {
  return SingleChildScrollView(
    child: Screenshot(
      controller: _screenshotController,
      child: child,
    ),
  );
}