Edge constructor

Edge({
  1. List<Alias>? aliases,
  2. DateTime? endTime,
  3. int? referenceId,
  4. List<HistogramEntry>? responseTimeHistogram,
  5. DateTime? startTime,
  6. EdgeStatistics? summaryStatistics,
})

Implementation

Edge({
  this.aliases,
  this.endTime,
  this.referenceId,
  this.responseTimeHistogram,
  this.startTime,
  this.summaryStatistics,
});