isMultiline property

bool isMultiline

Gets or sets whether or not the text displays multiple lines or embedded newlines. If this is false, all characters including and after the first newline will be omitted. The default is true.

Implementation

_i2.bool get isMultiline => _i4.getProperty(
      this,
      'isMultiline',
    );
void isMultiline=(bool value)

Implementation

set isMultiline(_i2.bool value) {
  _i4.setProperty(
    this,
    'isMultiline',
    value,
  );
}