operator + method
Addition operator for appending
Implementation
StringBuilder operator +(Object other) {
return StringBuilder.withContent(_buffer.toString())..appendObject(other);
}
Addition operator for appending
StringBuilder operator +(Object other) {
return StringBuilder.withContent(_buffer.toString())..appendObject(other);
}