escalationLabel property
String
get
escalationLabel
Escalation level label
Implementation
String get escalationLabel {
switch (escalationLevel) {
case 1: return 'Aviso 1 — Amigable';
case 2: return 'Aviso 2 — Recordatorio';
case 3: return 'Aviso 3 — Última Oportunidad';
case 4: return 'Suspendido';
default: return 'Nivel $escalationLevel';
}
}