prepend method

String prepend(
  1. String other
)

Returns the concatenation of other and this.

Example:

'word'.prepend('key'); // 'keyword'

Implementation

String prepend(String other) => other + this;