ChipStyle constructor

const ChipStyle({
  1. Color? backgroundColor,
  2. Color? selectedBackgroundColor,
  3. Color? disabledBackgroundColor,
  4. Color? textColor,
  5. Color? selectedTextColor,
  6. Color? disabledTextColor,
  7. Color? borderColor,
  8. Color? selectedBorderColor,
  9. Color? disabledBorderColor,
  10. double? borderWidth,
  11. double? selectedBorderWidth,
  12. EdgeInsetsGeometry? padding,
  13. EdgeInsetsGeometry? margin,
  14. BorderRadiusGeometry? borderRadius,
  15. double? iconSize,
  16. TextStyle? textStyle,
  17. double? elevation,
  18. double? selectedElevation,
  19. Color? shadowColor,
  20. List<Color>? gradientColors,
  21. AlignmentGeometry? gradientBegin,
  22. AlignmentGeometry? gradientEnd,
  23. Duration? duration,
  24. Curve? curve,
  25. double? pressedScale,
})

Creates a chip style.

Implementation

const ChipStyle({
  this.backgroundColor,
  this.selectedBackgroundColor,
  this.disabledBackgroundColor,
  this.textColor,
  this.selectedTextColor,
  this.disabledTextColor,
  this.borderColor,
  this.selectedBorderColor,
  this.disabledBorderColor,
  this.borderWidth,
  this.selectedBorderWidth,
  this.padding,
  this.margin,
  this.borderRadius,
  this.iconSize,
  this.textStyle,
  this.elevation,
  this.selectedElevation,
  this.shadowColor,
  this.gradientColors,
  this.gradientBegin,
  this.gradientEnd,
  this.duration,
  this.curve,
  this.pressedScale,
});