String suffix(int count) { if (count <= length) { final startPos = length - count; return substring(startPos,count); } return this; }