computeToPlainText method Null safety
- StringBuffer buffer,
- {bool includeSemanticsLabels = true,
- bool includePlaceholders = true}
override
PlaceholderSpans are flattened to a 0xFFFC
object replacement character in the
plain text representation when includePlaceholders
is true.
Implementation
@override
void computeToPlainText(StringBuffer buffer, {bool includeSemanticsLabels = true, bool includePlaceholders = true}) {
if (includePlaceholders) {
buffer.writeCharCode(placeholderCodeUnit);
}
}