Adds (concatenates) a string to this string.
Example:
String name = 'Hello'; name = name.add(' World'); // 'Hello World'
String add(String value) => this + value;