RecupSwitchListTile constructor

const RecupSwitchListTile({
  1. Key? key,
  2. required Widget title,
  3. required bool value,
  4. required void onChanged(
    1. bool
    )?,
  5. bool divider = true,
})

Implementation

const RecupSwitchListTile({
  Key? key,
  required this.title,
  required this.value,
  required this.onChanged,
  this.divider = true,
}) : super(key: key);