ThemeToggleSimple constructor

const ThemeToggleSimple({
  1. bool isDark = true,
  2. void onChanged(
    1. bool
    )?,
  3. Key? key,
})

Implementation

const ThemeToggleSimple({
  this.isDark = true,
  this.onChanged,
  super.key,
});