CheckboxStyle constructor

const CheckboxStyle({
  1. double? size,
  2. Color? checkedColor,
  3. Color? uncheckedColor,
  4. Color? checkColor,
  5. Radius? borderRadius,
  6. double? gapAfterBox,
  7. bool? interactive,
})

Creates a CheckboxStyle. Null fields defer to the theme, then to the default.

Implementation

const CheckboxStyle({
  this.size,
  this.checkedColor,
  this.uncheckedColor,
  this.checkColor,
  this.borderRadius,
  this.gapAfterBox,
  this.interactive,
});