operator + method

String operator +(
  1. Obj<String> other
)

Creates a new string by concatenating this string with other.

Example:

const string = 'dart' + 'lang'; // 'dartlang'

Implementation

String operator +(Obj<String> other) => value + other.value;