Carpet constructor

const Carpet({
  1. required List<Widget> children,
  2. double gap = 16,
  3. double minItemWidth = 240,
  4. Key? key,
})

Implementation

const Carpet({
  required this.children,
  this.gap = 16,
  this.minItemWidth = 240,
  super.key,
});