render method
Renders the line to a styled string (including SGR and OSC 8 sequences), trimming trailing spaces.
Implementation
String render() {
final out = StringBuffer();
_renderLine(out, this);
return out.toString();
}
Renders the line to a styled string (including SGR and OSC 8 sequences), trimming trailing spaces.
String render() {
final out = StringBuffer();
_renderLine(out, this);
return out.toString();
}