BootstrapCheckbox constructor

const BootstrapCheckbox({
  1. dynamic onChanged(
    1. bool
    )?,
  2. bool value = false,
  3. Widget label = const SizedBox(),
  4. bool enabled = true,
})

Implementation

const BootstrapCheckbox({
  this.onChanged,
  this.value = false,
  this.label = const SizedBox(),
  this.enabled = true,
});