CheckboxThemeData constructor

const CheckboxThemeData({
  1. ButtonState<Decoration?>? checkedDecoration,
  2. ButtonState<Decoration?>? uncheckedDecoration,
  3. ButtonState<Decoration?>? thirdstateDecoration,
  4. EdgeInsetsGeometry? padding,
  5. EdgeInsetsGeometry? margin,
  6. IconData? icon,
  7. ButtonState<Color?>? checkedIconColor,
  8. ButtonState<Color?>? uncheckedIconColor,
  9. ButtonState<Color?>? thirdstateIconColor,
  10. ButtonState<Color?>? foregroundColor,
})

Creates a CheckboxThemeData

Implementation

const CheckboxThemeData({
  this.checkedDecoration,
  this.uncheckedDecoration,
  this.thirdstateDecoration,
  this.padding,
  this.margin,
  this.icon,
  this.checkedIconColor,
  this.uncheckedIconColor,
  this.thirdstateIconColor,
  this.foregroundColor,
});