String? formatTime(DateTime? date) { if (date == null) { return null; } return DateFormat('kk:mm').format(date); }