fromName static method
Implementation
static WidgetTheme fromName(String? widgetType) {
if (widgetType == null) {
return const WidgetTheme();
}
return themeMap[_stripBrackets(widgetType)] ?? const WidgetTheme();
}
static WidgetTheme fromName(String? widgetType) {
if (widgetType == null) {
return const WidgetTheme();
}
return themeMap[_stripBrackets(widgetType)] ?? const WidgetTheme();
}