You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation claims that the character at end is not included. However the code
final t =AttributedText(text:'Some text here');
t.addAttribution(boldAttribution, constSpanRange(start:2, end:3));
print('1> $t');
print('2> ${t.spans.collapseSpans(contentLength: 6)}');
The documentation claims that the character at
end
is not included. However the codePrints
Would suggest that the
end
in SpanRange is actually inclusive.The text was updated successfully, but these errors were encountered: