reverse method
Reverses the contents of this StringBuilder.
Returns this StringBuilder for method chaining
Implementation
StringBuilder reverse() {
String current = _buffer.toString();
_buffer.clear();
_buffer.write(current.split('').reversed.join(''));
return this;
}