String getLastSymbols(int symbolsAmount) { if (length >= symbolsAmount) { return '...${substring(length - symbolsAmount)}'; } else { return this; } }