Span constructor

Span({
  1. Attributes? attributes,
  2. int? childSpanCount,
  3. TruncatableString? displayName,
  4. String? endTime,
  5. Links? links,
  6. String? name,
  7. String? parentSpanId,
  8. bool? sameProcessAsParentSpan,
  9. String? spanId,
  10. String? spanKind,
  11. StackTrace? stackTrace,
  12. String? startTime,
  13. Status? status,
  14. TimeEvents? timeEvents,
})

Implementation

Span({
  this.attributes,
  this.childSpanCount,
  this.displayName,
  this.endTime,
  this.links,
  this.name,
  this.parentSpanId,
  this.sameProcessAsParentSpan,
  this.spanId,
  this.spanKind,
  this.stackTrace,
  this.startTime,
  this.status,
  this.timeEvents,
});