.wrapText(characters)
Description
Parameters
Usage On Strings
num = "hello world, im doing pretty well"
log num.wrapText(15)
// hello world, im
// doing pretty
// well
// it inserts newlines into the string so that the text never goes over the limit but also so that the words arent split halfway throughLast updated