extension StringUtils on String {
String truncate({int length = 32}) {
if (length <= length) {
return this;
}
return '${substring(0, length)}...';