SolidThemeConfig constructor

const SolidThemeConfig({
  1. bool enabled = true,
  2. String lightModeTooltip = 'Switch to light theme',
  3. String darkModeTooltip = 'Switch to dark theme',
  4. Future<void> onToggle()?,
})

Implementation

const SolidThemeConfig({
  this.enabled = true,
  this.lightModeTooltip = 'Switch to light theme',
  this.darkModeTooltip = 'Switch to dark theme',
  this.onToggle,
});