operator + method - String class - dart:core library (original) (raw)
operator + abstract method
String operator +(
- String other )
Creates a new string by concatenating this string with other
.
Example:
const string = 'dart' + 'lang'; // 'dartlang'
Implementation
String operator +(String other);