klyn.StringBuilderSync.toString
method
public override toString() as String:
Description

Returns a String representation of the builder content.

Returns

Materialized text.

Example
builder = StringBuilderSync()
builder.append("Klyn")
text = builder.toString()
print(text)