CustomChipWidget constructor

const CustomChipWidget({
  1. Key? key,
  2. required List<Widget> children,
  3. Axis direction = Axis.horizontal,
  4. double spacing = 8.0,
  5. double runSpacing = 4.0,
  6. WrapAlignment alignment = WrapAlignment.center,
})

Implementation

const CustomChipWidget({
  super.key,
  required this.children,
  this.direction = Axis.horizontal,
  this.spacing = 8.0,
  this.runSpacing = 4.0,
  this.alignment = WrapAlignment.center,
});