isThemeFromBox method

bool isThemeFromBox()

Implementation

bool isThemeFromBox() {
  if (_fontSizeController.themeMode.value == AppThemeMode.system) {
    return _isPlatformDark;
  }
  return _fontSizeController.themeMode.value == AppThemeMode.dark;
}