Truncates the string to a given length, adding ellipsis if necessary.
length
String truncate(int length) { return this.length > length ? '${substring(0, length)}...' : this; }