Span constructor

Span({
  1. Map<String, Object?>? attributes,
  2. List<Span>? childSpans,
  3. String? duration,
  4. String? endTime,
  5. String? name,
  6. String? startTime,
})

Implementation

Span({
  this.attributes,
  this.childSpans,
  this.duration,
  this.endTime,
  this.name,
  this.startTime,
});