add method

String add(
  1. String value
)

Adds (concatenates) a string to this string.

Example:

String name = 'Hello';
name = name.add(' World'); // 'Hello World'

Implementation

String add(String value) => this + value;