isDarkMode property
Get whether or not the current theme is dark mode.
Implementation
bool get isDarkMode {
  bool isDarkMode = _preferences.get('is_dark_mode',
      defaultValue:
          WidgetsBinding.instance.platformDispatcher.platformBrightness ==
              Brightness.dark);
  return isDarkMode;
}