getRoutesByCommunity method
Gets routes with specific community
Implementation
List<BGPRouteEntry<T>> getRoutesByCommunity(String community) =>
routes.values
.where((route) => route.communities.contains(community))
.toList();
Gets routes with specific community
List<BGPRouteEntry<T>> getRoutesByCommunity(String community) =>
routes.values
.where((route) => route.communities.contains(community))
.toList();