append method
Appends a string to this StringBuilder.
str
the string to append
Returns this StringBuilder for method chaining
Implementation
StringBuilder append(dynamic str) {
_buffer.write(str.toString());
return this;
}
Appends a string to this StringBuilder.
str
the string to append
Returns this StringBuilder for method chaining
StringBuilder append(dynamic str) {
_buffer.write(str.toString());
return this;
}