PillStyle constructor

const PillStyle({
  1. Color? backgroundColor,
  2. Color? borderColor,
  3. Color? labelColor,
  4. Color? valueColor,
  5. Color? dividerColor,
  6. double? borderWidth,
  7. double? borderRadius,
  8. FontWeight? labelFontWeight,
  9. FontWeight? valueFontWeight,
  10. double? fontSize,
  11. Color? selectedBackgroundColor,
  12. Color? selectedBorderColor,
  13. double? selectedBorderWidth,
})

Creates a PillStyle with the given properties.

Implementation

const PillStyle({
  this.backgroundColor,
  this.borderColor,
  this.labelColor,
  this.valueColor,
  this.dividerColor,
  this.borderWidth,
  this.borderRadius,
  this.labelFontWeight,
  this.valueFontWeight,
  this.fontSize,
  this.selectedBackgroundColor,
  this.selectedBorderColor,
  this.selectedBorderWidth,
});