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