SentryTraceContext constructor
SentryTraceContext({})
Implementation
SentryTraceContext({
SentryId? traceId,
SpanId? spanId,
this.parentSpanId,
this.sampled,
required this.operation,
this.description,
this.status,
this.origin,
this.unknown,
this.replayId,
this.data,
}) : traceId = traceId ?? SentryId.newId(),
spanId = spanId ?? SpanId.newId();