append method

String append(
  1. String string
)

Append a string.

Implementation

String append(String string) {
  if (this == null) {
    throw ArgumentError('string: $this');
  }
  return this! + string;
}