flags property

  1. @TagNumber.new(6)
int get flags

Flags, a bit field. 8 least significant bits are the trace flags as defined in W3C Trace Context specification. Readers MUST not assume that 24 most significant bits will be zero. When creating new spans, the most-significant 24-bits MUST be zero. To read the 8-bit W3C trace flag (use flags & SPAN_FLAGS_TRACE_FLAGS_MASK). Optional.

See https://www.w3.org/TR/trace-context-2/#trace-flags for the flag definitions.

Implementation

@$pb.TagNumber(6)
$core.int get flags => $_getIZ(5);
  1. @TagNumber.new(6)
set flags (int v)

Implementation

@$pb.TagNumber(6)
set flags($core.int v) {
  $_setUnsignedInt32(5, v);
}