SettingBoolInput constructor

const SettingBoolInput({
  1. Key? key,
  2. required String title,
  3. String? subTitle,
  4. required bool value,
  5. bool disable = false,
  6. void onChanged(
    1. bool value
    )?,
})

Implementation

const SettingBoolInput({
  super.key,
  required this.title,
  this.subTitle,
  required this.value,
  this.disable = false,
  this.onChanged,
});