isDark property

bool get isDark

Returns true if the theme mode is dark.

Implementation

bool get isDark => this == ThemeMode.system
    ? SchedulerBinding.instance.platformDispatcher.platformBrightness.isDark
    : this == ThemeMode.dark;