removePrefix method

String removePrefix(
  1. String prefix
)

Implementation

String removePrefix(String prefix) {
  if (startsWith(prefix)) {
    return substring(prefix.length);
  }
  return this;
}