append method

String append(
  1. String string
)

Appends the given string to the end of this string.

@param string The string to append. @return The resulting string after appending.

Implementation

String append(String string) => this + string;