ChipConfiguration constructor

const ChipConfiguration({
  1. required Widget label,
  2. Widget? avatar,
  3. TextStyle? labelStyle,
  4. EdgeInsetsGeometry? labelPadding,
  5. Widget? deleteIcon,
  6. Color? deleteIconColor,
  7. String? deleteButtonTooltipMessage,
  8. OutlinedBorder? shape,
  9. Clip clipBehavior = Clip.none,
  10. Color? backgroundColor,
  11. EdgeInsetsGeometry? padding,
  12. MaterialTapTargetSize? materialTapTargetSize,
  13. double elevation = 0,
  14. Color shadowColor = Colors.black,
})

Implementation

const ChipConfiguration({
  required this.label,
  this.avatar,
  this.labelStyle,
  this.labelPadding,
  this.deleteIcon,
  this.deleteIconColor,
  this.deleteButtonTooltipMessage,
  this.shape,
  this.clipBehavior = Clip.none,
  this.backgroundColor,
  this.padding,
  this.materialTapTargetSize,
  this.elevation = 0,
  this.shadowColor = Colors.black,
});