SpanMarker constructor
const
SpanMarker({
- required Attribution attribution,
- required int offset,
- required SpanMarkerType markerType,
Constructs a SpanMarker with the given attribution
, offset
within
some discrete content, and markerType
of start
or end
.
Implementation
const SpanMarker({
required this.attribution,
required this.offset,
required this.markerType,
});