activeSpan property

  1. @protected
Span? activeSpan

If this module is in a transition state, this is the Span capturing the transition state.

Example:

@overide
Future<Null> onLoad() {
  var value = 'some_value;
  ...
  activeSpan.setTag('some.tag.name', value);
  ...
}

Implementation

@protected
Span? get activeSpan => _activeSpan;