removeFirstNCharacters: removes the first n characters
String removeFirstNCharacters(int n) { if (isNull) return ""; return this!.substring(n); }