getTabShellNotifier method

UiTabShellNotifier getTabShellNotifier(
  1. String shellPath
)

Implementation

UiTabShellNotifier getTabShellNotifier(String shellPath) {
  final foundIndex = tabShellNotifiers.indexWhere(
    (it) => it.config.fullPath == shellPath,
  );
  if (foundIndex < 0) {
    throw Exception('TabShellNotifier not found for shellPath=$shellPath');
  }
  return tabShellNotifiers[foundIndex];
}