String truncate([int len = 100]) { if (length > len) return '${substring(0, len)}...'; return this; }