CheckboxProps constructor

const CheckboxProps({
  1. required bool checked,
  2. String? label,
  3. String? description,
  4. ComponentSize size = ComponentSize.md,
  5. ColorVariant color = ColorVariant.primary,
  6. bool disabled = false,
  7. void onChanged(
    1. bool
    )?,
})

Implementation

const CheckboxProps({
  required this.checked,
  this.label,
  this.description,
  this.size = ComponentSize.md,
  this.color = ColorVariant.primary,
  this.disabled = false,
  this.onChanged,
});