isDarkMode property
bool
get
isDarkMode
Returns if the theme is actually in dark mode.
Implementation
bool get isDarkMode {
final brightness = MediaQuery.maybePlatformBrightnessOf(this);
if (brightness == null) return false;
return brightness == Brightness.dark;
}