operator + method

String operator +(
  1. Object other
)

Concatenates this value with other and returns a new String.

rFirst + rLast   // String
rFirst + ' world' // String

Implementation

String operator +(Object other) => value + _resolve(other);