removeFirstNCharacters method

String removeFirstNCharacters(
  1. int n
)

removeFirstNCharacters: removes the first n characters

Implementation

String removeFirstNCharacters(int n) {
  if (isNull) return "";
  return this!.substring(n);
}