DistanceVectorRoutingTable<T> constructor

const DistanceVectorRoutingTable<T>({
  1. required T sourceNode,
  2. required Map<T, DistanceVectorRouteEntry<T>> routes,
  3. required Map<T, NeighborAdvertisement<T>> neighborAdvertisements,
  4. required DateTime lastUpdate,
  5. required int totalRoutes,
  6. required int totalNeighbors,
})

Implementation

const DistanceVectorRoutingTable({
  required this.sourceNode,
  required this.routes,
  required this.neighborAdvertisements,
  required this.lastUpdate,
  required this.totalRoutes,
  required this.totalNeighbors,
});