TUIToggleRow constructor

const TUIToggleRow({
  1. Key? key,
  2. required String title,
  3. String description = "",
  4. Icon? icon,
  5. required bool value,
  6. ValueChanged<bool>? onChanged,
  7. bool backgroundDark = false,
})

Implementation

const TUIToggleRow({
  super.key,
  required this.title,
  this.description = "",
  this.icon,
  required this.value,
  this.onChanged,
  this.backgroundDark = false,
});