SwitchRow constructor

const SwitchRow({
  1. required bool value,
  2. required String label,
  3. Key? key,
  4. dynamic onChanged(
    1. bool
    )?,
  5. String? description,
})

Implementation

const SwitchRow({required this.value, required this.label, super.key, this.onChanged, this.description});