softWrap method

VxTextBuilder softWrap(
  1. bool softWrap
)

Whether the text should break at soft line breaks.

If false, the glyphs in the text will be positioned as if there was unlimited horizontal space.

Implementation

VxTextBuilder softWrap(bool softWrap) {
  _softWrap = softWrap;
  return this;
}