softWrap property

bool get softWrap

Whether text layout may wrap at the available width.

Implementation

bool get softWrap => _softWrap;
set softWrap (bool value)

Updates the softWrap value.

Implementation

set softWrap(bool value) {
  if (_softWrap == value) {
    return;
  }
  _softWrap = value;
  _markTextLayoutDirty();
}