multiline property Null safety
If non-null, sets the SemanticsNode.isMultiline semantic to the given value.
Implementation
bool? get multiline => _multiline;
Implementation
set multiline(bool? value) {
if (multiline == value)
return;
_multiline = value;
markNeedsSemanticsUpdate();
}