setTheme method

void setTheme(
  1. ThemeBase themeBase
)

Sets the theme to the provided themeBase.

Implementation

void setTheme(ThemeBase themeBase) {
  log('Setting theme to ${themeBase.name}');

  emit(_generator.generateTheme(themeBase));

  _currentTheme = themeBase;
}