Removes prefix from the start of this string if present.
prefix
String removePrefix(String prefix) => startsWith(prefix) ? substring(prefix.length) : this;