isDark property
bool
get
isDark
Returns true if the theme is dark.
Example:
ThemeData.dark().isDark; // true
ThemeData.light().isDark; // false
Implementation
bool get isDark => brightness == Brightness.dark;