isDark static method
Determines if the current theme is dark
Implementation
static bool isDark(BuildContext context) {
return Theme.of(context).brightness == Brightness.dark;
}
Determines if the current theme is dark
static bool isDark(BuildContext context) {
return Theme.of(context).brightness == Brightness.dark;
}