fromTabIndex static method
Implementation
static InfospectDesktopTab? fromTabIndex(int tabIndex) {
for (final tab in values) {
if (tab.tabIndex == tabIndex) return tab;
}
return null;
}
static InfospectDesktopTab? fromTabIndex(int tabIndex) {
for (final tab in values) {
if (tab.tabIndex == tabIndex) return tab;
}
return null;
}