closeOtherTabs method
void
closeOtherTabs()
Implementation
void closeOtherTabs() {
if (_activeRoute == null) return;
_tabs.removeWhere((t) => t.route != _activeRoute);
notifyListeners();
}
void closeOtherTabs() {
if (_activeRoute == null) return;
_tabs.removeWhere((t) => t.route != _activeRoute);
notifyListeners();
}