isLight property

bool get isLight

Returns true if the theme is light.

Example:

ThemeData.light().isLight; // true
ThemeData.dark().isLight; // false

Implementation

bool get isLight => brightness == Brightness.light;