operator + method

StringBuilder operator +(
  1. Object other
)

Addition operator for appending

Implementation

StringBuilder operator +(Object other) {
  return StringBuilder.withContent(_buffer.toString())..appendObject(other);
}