removeLeft method

String removeLeft(
  1. int characters
)

return a new string removing first n characters

Implementation

String removeLeft(int characters) {
  return this.substring(characters);
}