gap method

SentenceDrawer<T> gap([
  1. double? amount
])

Implementation

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