setThemeByName method
Find and switch theme by its name from the available theme list.
Implementation
void setThemeByName(String name) {
for (final MiniTheme theme in _availableThemes) {
if (theme.name == name) {
setTheme(theme);
return;
}
}
}