Playground constructor

const Playground({
  1. Key? key,
  2. PlaygroundController? controller,
  3. PlaygroundBackground? background,
  4. bool enableOverlay = false,
})

Implementation

const Playground({
  Key? key,
  this.controller,
  this.background,
  this.enableOverlay = false,
}) : super(key: key);