Adds a prefix to a string.
static String addPrefix(String text, String prefix) { return '$prefix$text'; }