ArcaneSettingsToggleRow constructor

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

Implementation

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