startSpan abstract method

Span startSpan(
  1. String name, {
  2. Context? context,
  3. SpanKind? kind,
  4. List<Attribute> attributes = const [],
  5. List<SpanLink>? links,
  6. Int64? startTime,
})

Starts a new api.Span without setting it as the current span in this tracer's context.

Implementation

api.Span startSpan(String name,
    {api.Context? context,
    api.SpanKind? kind,
    List<api.Attribute> attributes = const [],
    List<api.SpanLink>? links,
    Int64? startTime});