operator + method Null safety

String operator + (
  1. String other
)

Creates a new string by concatenating this string with other.

Example:

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

Implementation

String operator +(String other);