render method
Renders this span to the buffer.
For primitive spans (PlainText, AnsiStyled, etc.), override this to write directly to the buffer.
For composite spans that override build, the default implementation delegates to the built span.
Implementation
void render(ConsoleMessageBuffer buffer) {
// Default: delegate to build() result
renderSpan(build(), buffer);
}