DesktopThemeState constructor

const DesktopThemeState({
  1. required bool isDarkTheme,
})

Constructs a DesktopThemeState with the provided theme information.

  • isDarkTheme: A boolean value indicating whether the theme is dark.

Implementation

const DesktopThemeState({required this.isDarkTheme});