Returns the concatenation of other and this.
other
this
Example:
'word'.prepend('key'); // 'keyword'
String prepend(String other) => other + this;