prepend method

String prepend(
  1. String other
)

Prepends other to this string.

Implementation

String prepend(String other) => '$other$this';