getRoutesByOrigin method
Gets routes by origin type
Implementation
List<BGPRouteEntry<T>> getRoutesByOrigin(BGPOrigin origin) =>
routes.values.where((route) => route.origin == origin).toList();
Gets routes by origin type
List<BGPRouteEntry<T>> getRoutesByOrigin(BGPOrigin origin) =>
routes.values.where((route) => route.origin == origin).toList();