this will give first n characters of string
String firstNChars({int n = 1}) { if (n > length || n < 1) return this; return substring(0, n); }