BGPRoutingTable<T> constructor

const BGPRoutingTable<T>({
  1. required T sourceAS,
  2. required Map<T, BGPRouteEntry<T>> routes,
  3. required Map<T, List<BGPRouteEntry<T>>> alternativeRoutes,
  4. required DateTime lastUpdate,
  5. required int totalRoutes,
  6. required int totalASes,
})

Implementation

const BGPRoutingTable({
  required this.sourceAS,
  required this.routes,
  required this.alternativeRoutes,
  required this.lastUpdate,
  required this.totalRoutes,
  required this.totalASes,
});