getPlainText method
Returns plain text for each node within selection
Implementation
String getPlainText() {
final text = document.getPlainText(selection.start, selection.end - selection.start);
return text;
}
Returns plain text for each node within selection
String getPlainText() {
final text = document.getPlainText(selection.start, selection.end - selection.start);
return text;
}