hasTheme method

bool hasTheme(
  1. String themeId
)

Returns whether there is a theme with the given id.

Implementation

bool hasTheme(String themeId) {
  return _appThemes.containsKey(themeId);
}