CheckboxTheme constructor

const CheckboxTheme({
  1. Color? backgroundColor,
  2. Color? activeColor,
  3. Color? borderColor,
  4. double? size,
  5. double? gap,
  6. 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.backgroundColor,
  this.activeColor,
  this.borderColor,
  this.size,
  this.gap,
  this.borderRadius,
});