Service constructor

Service({
  1. String? accountId,
  2. List<HistogramEntry>? durationHistogram,
  3. List<Edge>? edges,
  4. DateTime? endTime,
  5. String? name,
  6. List<String>? names,
  7. int? referenceId,
  8. List<HistogramEntry>? responseTimeHistogram,
  9. bool? root,
  10. DateTime? startTime,
  11. String? state,
  12. ServiceStatistics? summaryStatistics,
  13. String? type,
})

Implementation

Service({
  this.accountId,
  this.durationHistogram,
  this.edges,
  this.endTime,
  this.name,
  this.names,
  this.referenceId,
  this.responseTimeHistogram,
  this.root,
  this.startTime,
  this.state,
  this.summaryStatistics,
  this.type,
});