forceLine property
Whether this rendering object will take a full line regardless the text width.
Implementation
bool get forceLine => _forceLine;Implementation
set forceLine(bool value) {
  if (_forceLine == value) {
    return;
  }
  _forceLine = value;
  markNeedsLayout();
}