ChoiceChipThemeData constructor

const ChoiceChipThemeData({
  1. TextStyle? selectedTextStyle = const TextStyle(color: Colors.white),
  2. TextStyle? textStyle,
  3. Color? selectedBackgroundColor = const Color(0xFF649BEC),
  4. Color? backgroundColor = const Color(0xfff8f8f8),
  5. VisualDensity? visualDensity,
  6. double? elevation,
  7. BorderSide? side,
  8. BorderSide? selectedSide,
  9. OutlinedBorder? shape,
  10. OutlinedBorder? selectedShape,
  11. Color? shadowColor = Colors.black,
  12. Color? selectedShadowColor = Colors.black,
  13. EdgeInsetsGeometry? padding,
  14. EdgeInsetsGeometry? labelPadding = const EdgeInsets.symmetric(horizontal: 4.0),
  15. EdgeInsetsGeometry margin = const EdgeInsets.symmetric(horizontal: 10.0),
})

Implementation

const ChoiceChipThemeData({
  this.selectedTextStyle = const TextStyle(color: Colors.white),
  this.textStyle,
  this.selectedBackgroundColor = const Color(0xFF649BEC),
  this.backgroundColor = const Color(0xfff8f8f8),
  this.visualDensity,
  this.elevation,
  this.side,
  this.selectedSide,
  this.shape,
  this.selectedShape,
  this.shadowColor = Colors.black,
  this.selectedShadowColor = Colors.black,
  this.padding,
  this.labelPadding = const EdgeInsets.symmetric(horizontal: 4.0),
  this.margin = const EdgeInsets.symmetric(horizontal: 10.0),
});