Creates the string representation of that builder.
import {StringBuilder} from "nativescript-stringformat";
var builder = new StringBuilder("TM");
var str = builder.toString();
// shorter: '' + builder
Creates the string representation of that builder.
import {StringBuilder} from "nativescript-stringformat";
var builder = new StringBuilder("TM");
var str = builder.toString();
// shorter: '' + builder