SettingsToggleRowProps constructor

const SettingsToggleRowProps({
  1. required String title,
  2. String? description,
  3. required bool enabled,
  4. void onChanged(
    1. bool
    )?,
  5. bool disabled = false,
})

Implementation

const SettingsToggleRowProps({
  required this.title,
  this.description,
  required this.enabled,
  this.onChanged,
  this.disabled = false,
});