innerText property

String get innerText

Implementation

String get innerText => text ?? '';
set innerText (String value)

Implementation

set innerText(String value) {
  text = value.replaceAll('\n', '');
}