operator + method

String operator + (
  1. String other
)

Creates a new string by concatenating this string with other.

'dart' + 'lang'; // 'dartlang'

Implementation

String operator +(String other);