parseIcon function
Implementation
IconData? parseIcon(String? iconName, [IconData? defaultIcon]) {
if (iconName == null) {
return defaultIcon;
}
return materialIcons[iconName.toLowerCase()] ?? cupertinoIcons[iconName.toLowerCase()];
}
IconData? parseIcon(String? iconName, [IconData? defaultIcon]) {
if (iconName == null) {
return defaultIcon;
}
return materialIcons[iconName.toLowerCase()] ?? cupertinoIcons[iconName.toLowerCase()];
}