removePrefix method

String removePrefix(
  1. String prefix
)

移出头部指定 prefix 不包含不移出

Implementation

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