Checkbox constructor

const Checkbox({
  1. required Key id,
  2. required bool value,
  3. String label = '',
  4. void onChanged(
    1. bool
    )?,
  5. Style? style,
})

Implementation

const Checkbox({
  required this.id,
  required this.value,
  this.label = '',
  this.onChanged,
  this.style,
});