isThemeDark property
bool
get
isThemeDark
Check if the device is in dark mode
Implementation
bool get isThemeDark {
if (isDeviceInDarkMode) return true;
// Use Theme.of(this) to establish a dependency so the widget rebuilds on theme change
Theme.of(this);
return NyThemeManager.instance.isDark;
}