operator + method Null safety
- String other
Creates a new string by concatenating this string with other
.
Example:
'dart' + 'lang'; // 'dartlang'
Implementation
String operator +(String other);
Creates a new string by concatenating this string with other
.
Example:
'dart' + 'lang'; // 'dartlang'
String operator +(String other);