checkIfDarkModeEnabled static method
Implementation
static bool checkIfDarkModeEnabled(BuildContext context) {
final ThemeData theme = Theme.of(context);
return theme.brightness == Brightness.dark;
}
static bool checkIfDarkModeEnabled(BuildContext context) {
final ThemeData theme = Theme.of(context);
return theme.brightness == Brightness.dark;
}