NamedNulleableBoolToggle constructor

const NamedNulleableBoolToggle({
  1. Key? key,
  2. required String label,
  3. dynamic onSelected(
    1. bool?
    )?,
  4. bool? isSelected,
})

Implementation

const NamedNulleableBoolToggle({
  Key? key,
  required this.label,
  this.onSelected,
  this.isSelected,
}) : super(key: key);