value property

Span? get value

The span of the request being handled, or null outside one.

Implementation

static Span? get value {
  final scoped = Zone.current[_zoneKey];
  return scoped is Span ? scoped : null;
}