forceLine property

bool forceLine

Whether this rendering object will take a full line regardless the text width.

Implementation

bool get forceLine => _forceLine;
void forceLine=(bool value)

Implementation

set forceLine(bool value) {
  if (_forceLine == value) {
    return;
  }
  _forceLine = value;
  markNeedsLayout();
}