ChipStyle constructor

const ChipStyle({
  1. Color? backgroundColor,
  2. Color? activeBackgroundColor,
  3. Color? borderColor,
  4. Color? activeBorderColor,
  5. Color? textColor,
  6. Color? activeTextColor,
  7. Color? iconColor,
  8. Color? activeIconColor,
  9. BorderRadius? borderRadius,
  10. EdgeInsetsGeometry? padding,
  11. TextStyle? textStyle,
  12. IconData? icon,
  13. double? iconSize,
})

Implementation

const ChipStyle({
  this.backgroundColor,
  this.activeBackgroundColor,
  this.borderColor,
  this.activeBorderColor,
  this.textColor,
  this.activeTextColor,
  this.iconColor,
  this.activeIconColor,
  this.borderRadius,
  this.padding,
  this.textStyle,
  this.icon,
  this.iconSize,
});