DigitCheckboxIcon constructor

const DigitCheckboxIcon({
  1. Key? key,
  2. required DigitCheckboxState state,
  3. bool isDisabled = false,
  4. Color? color,
  5. double size = DigitCheckboxConstants.containerSize,
})

Creates a DigitCheckboxIcon widget with the given parameters.

Implementation

const DigitCheckboxIcon({
  super.key,
  required this.state,
  this.isDisabled = false,
  this.color,
  this.size = DigitCheckboxConstants.containerSize,
});