text property
Compatibility getter: returns concatenated text from Paragraph children
Implementation
@override
String get text {
return children
.whereType<InlineContainerNode>()
.map((c) => c.text)
.join();
}
set
text
(String value)
Implementation
set text(String value) {}