SentryTransactionContext constructor

SentryTransactionContext(
  1. String name,
  2. String operation, {
  3. String? description,
  4. SentryTracesSamplingDecision? parentSamplingDecision,
  5. SentryId? traceId,
  6. SpanId? spanId,
  7. SpanId? parentSpanId,
  8. SentryTransactionNameSource? transactionNameSource,
  9. SentryTracesSamplingDecision? samplingDecision,
})

Implementation

SentryTransactionContext(
  this.name,
  String operation, {
  String? description,
  this.parentSamplingDecision,
  SentryId? traceId,
  SpanId? spanId,
  SpanId? parentSpanId,
  this.transactionNameSource,
  this.samplingDecision,
}) : super(
        operation: operation,
        description: description,
        traceId: traceId,
        spanId: spanId,
        parentSpanId: parentSpanId,
      );