CheckboxTheme constructor

const CheckboxTheme({
  1. Color? activeColor,
  2. Color? borderColor,
  3. double? size,
  4. double? gap,
  5. BorderRadiusGeometry? borderRadius,
})

Creates a CheckboxTheme.

All parameters are optional and will use framework defaults when null. The theme can be applied to individual checkboxes or globally through the component theme system.

Implementation

const CheckboxTheme({
  this.activeColor,
  this.borderColor,
  this.size,
  this.gap,
  this.borderRadius,
});