String truncateTo({int maxLength = 250}) => (toNotNull.length <= maxLength) ? toNotNull : '${toNotNull.substring(0, maxLength)}...';