gap method
Implementation
SentenceDrawer<T> gap([double? amount]) {
final width = amount ?? _parent._wordSpacing;
_segments.add(_GapSegment(width));
_totalWidth += width;
return this;
}
SentenceDrawer<T> gap([double? amount]) {
final width = amount ?? _parent._wordSpacing;
_segments.add(_GapSegment(width));
_totalWidth += width;
return this;
}