selectedRoute property
String
get
selectedRoute
Implementation
String get selectedRoute => _selectedRoute ?? "404";
set
selectedRoute
(String route)
Implementation
set selectedRoute(String route) {
_selectedRoute = route;
_selectedTab = config
.where((element) =>
DartBoardCore.instance.confirmRouteExists(element["route"]))
.toList()
.indexOf(selectedConfig);
notifyListeners();
}