this will give last n characters of string
String lastNChars({int n = 1}) { if (n > length || n < 1) return this; return substring(length - n); }