softWrap method

NikuText softWrap(
  1. bool softWrap
)

Whether the text should break at soft line breaks.

Equivalnet to

Text(softWrap: input)

Implementation

NikuText softWrap(bool softWrap) {
  this._softWrap = softWrap;

  return this;
}