forceLine property

bool forceLine
inherited

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

Implementation

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

Implementation

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