NulleableToggle constructor

const NulleableToggle({
  1. Key? key,
  2. dynamic onSelected(
    1. bool?
    )?,
  3. bool? isSelected,
})

Implementation

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