ChipStyle constructor

const ChipStyle({
  1. Color? backgroundColor,
  2. TextStyle? textStyle,
  3. Color? iconColor,
  4. double? iconSize,
  5. EdgeInsetsGeometry? labelPadding,
  6. double? elevation,
  7. Color? borderColor,
  8. double? borderWidth,
  9. BorderRadius? borderRadius,
})

Implementation

const ChipStyle({
  this.backgroundColor,
  this.textStyle,
  this.iconColor,
  this.iconSize,
  this.labelPadding,
  this.elevation,
  this.borderColor,
  this.borderWidth,
  this.borderRadius,
});