Get the IconPack by its name
static IconPack? byName(String? pack) { if (pack == null) return null; return IconPack.values.firstWhereOrNull((p) => p.name == pack); }