String formatUTC(String? utcTime) { return utcTime == null || utcTime.isEmpty ? "UNDEFINED" : DateFormat(dateFormatUTC).format(utc(utcTime)!); }