SentrySpanContext constructor
SentrySpanContext({})
Implementation
SentrySpanContext({
SentryId? traceId,
SpanId? spanId,
this.parentSpanId,
required this.operation,
this.description,
this.origin,
}) : traceId = traceId ?? SentryId.newId(),
spanId = spanId ?? SpanId.newId();