CheckboxThemeData constructor

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

Implementation

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