static String getTimeFromDate(DateTime? date, {String timeFormat = "hh:mm a'"}) { try { return DateFormat(timeFormat).format(date!).toUpperCase(); } catch (e) { return ''; } }