isDarkMode property

bool get isDarkMode

Get the device dark mode

Example: context.isDarkMode

Implementation

bool get isDarkMode =>
    MediaQuery.of(this).platformBrightness == Brightness.dark;