LinkStateRoutingTable<T> constructor

const LinkStateRoutingTable<T>({
  1. required T sourceNode,
  2. required Map<T, LinkStateRouteEntry<T>> routes,
  3. required LinkStateDatabase<T> topology,
  4. required DateTime lastUpdate,
  5. required int totalRoutes,
  6. required int totalNodes,
})

Implementation

const LinkStateRoutingTable({
  required this.sourceNode,
  required this.routes,
  required this.topology,
  required this.lastUpdate,
  required this.totalRoutes,
  required this.totalNodes,
});