PlaygroundBuilder constructor

const PlaygroundBuilder({
  1. Key? key,
  2. required PlaygroundController controller,
  3. required Widget builder(
    1. BuildContext context,
    2. PlaygroundValue value,
    3. Widget? child
    ),
  4. Widget? child,
})

Implementation

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