SettingsSectionWithToggle constructor

const SettingsSectionWithToggle({
  1. Key? key,
  2. required String title,
  3. void onChanged(
    1. bool value
    )?,
})

Implementation

const SettingsSectionWithToggle({
  super.key,
  required this.title,
  this.onChanged,
});