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