BGPPathAttributes constructor

const BGPPathAttributes({
  1. required int asPathLength,
  2. required List<int> asPath,
  3. required int origin,
  4. int localPreference = 100,
  5. int med = 0,
  6. List<String> communities = const [],
  7. bool atomicAggregate = false,
  8. String? aggregator,
})

Implementation

const BGPPathAttributes({
  required this.asPathLength,
  required this.asPath,
  required this.origin,
  this.localPreference = 100,
  this.med = 0,
  this.communities = const [],
  this.atomicAggregate = false,
  this.aggregator,
});