wrapWords method

VxTextBuilder wrapWords(
  1. bool wrapWords
)

Whether words which don't fit in one line should be wrapped.

If false, the fontSize is lowered as far as possible until all words fit into a single line.

Implementation

VxTextBuilder wrapWords(bool wrapWords) {
  _wrapWords = wrapWords;
  return this;
}