value property

String? get value

Implementation

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

Implementation

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