operator + method - String class - dart:core library (original) (raw)

description

operator + abstract method

String operator +(

  1. String other )

Creates a new string by concatenating this string with other.

Example:

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

Implementation

String operator +(String other);