CarpenterBlockGroup constructor

const CarpenterBlockGroup({
  1. Key? key,
  2. required List<Widget> children,
  3. double spacing = 8,
})

Implementation

const CarpenterBlockGroup({
  super.key,
  required this.children,
  this.spacing = 8,
});