prepend method

void prepend(
  1. String text
)

Prepends text to the current string.

Implementation

void prepend(String text) => value = '$text$value';