isDark property
Returns true if the theme mode is dark.
Implementation
bool get isDark => this == ThemeMode.system
? SchedulerBinding.instance.platformDispatcher.platformBrightness.isDark
: this == ThemeMode.dark;
Returns true if the theme mode is dark.
bool get isDark => this == ThemeMode.system
? SchedulerBinding.instance.platformDispatcher.platformBrightness.isDark
: this == ThemeMode.dark;