String toTimeString({String formatToTime = "HH:mm", String locale = "ID"}) { if (this == null) return '-'; return DateFormat( formatToTime, locale, ).format(this ?? DateTime.now()); }