prepend method

String prepend(
  1. String string
)

prepend to start string

Implementation

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