TraceContext constructor

TraceContext({
  1. required String requestId,
  2. String? traceparent,
  3. String? tracestate,
  4. Map<String, String>? baggage,
})

Implementation

TraceContext({
  required this.requestId,
  this.traceparent,
  this.tracestate,
  Map<String, String>? baggage,
}) : baggage = baggage ?? {};