ChipGroup constructor

const ChipGroup({
  1. required List<Component> children,
  2. double gap = 8,
  3. bool wrap = true,
  4. Key? key,
})

Implementation

const ChipGroup({
  required this.children,
  this.gap = 8,
  this.wrap = true,
  super.key,
});