valueText static method
Implementation
static String valueText(int? num, {bool needNumberDescription = true}) {
return (num ?? 0) >= 90000 ? 'Unlimited' : needNumberDescription ?'${((num ?? 0) == 0 ? 'ZERO' : converter.convertInt(num)).toUpperCase()} (${num ?? 0})' : '${(num ?? 0)}';
}