ChipConfig constructor

const ChipConfig({
  1. Icon? deleteIcon,
  2. Color? backgroundColor,
  3. EdgeInsets padding = Default.defaultChipPadding,
  4. double radius = Default.defaultChipRadius,
  5. double spacing = kPadding,
  6. double runSpacing = kPadding,
  7. Widget? separator,
  8. EdgeInsets labelPadding = EdgeInsets.zero,
  9. bool autoScroll = false,
})

Implementation

const ChipConfig({
  this.deleteIcon,
  // this.deleteIconColor = Colors.paperPrimary,
  this.backgroundColor,
  this.padding = Default.defaultChipPadding,
  this.radius = Default.defaultChipRadius,
  this.spacing = kPadding,
  this.runSpacing = kPadding,
  this.separator,
  // this.labelColor = Colors.paperPrimary,
  // this.labelStyle,
  this.labelPadding = EdgeInsets.zero,
  this.autoScroll = false,
});