PlaygroundContainer constructor

const PlaygroundContainer({
  1. required String name,
  2. double width = 100,
  3. double height = 100,
  4. Widget? child,
  5. Color color = Colors.blue,
  6. Key? key,
})

Implementation

const PlaygroundContainer({
  required this.name,
  this.width = 100,
  this.height = 100,
  this.child,
  this.color = Colors.blue,
  super.key
});