prepend method

void prepend(
  1. String text
)

Prepends text to the current value.

Implementation

void prepend(String text) {
  value = text + value;
}