StreamCheckboxProps constructor

const StreamCheckboxProps({
  1. required bool value,
  2. required ValueChanged<bool>? onChanged,
  3. StreamCheckboxSize? size,
  4. OutlinedBorder? shape,
  5. String? semanticLabel,
})

Creates properties for a checkbox.

Implementation

const StreamCheckboxProps({
  required this.value,
  required this.onChanged,
  this.size,
  this.shape,
  this.semanticLabel,
});