A new DateTime at the end of this day (23:59:59.999) in the same timezone.
DateTime(2025, 6, 15, 14, 30).endOfDay; // DateTime(2025, 6, 15, 23, 59, 59, 999)
DateTime get endOfDay => DateTime(year, month, day, 23, 59, 59, 999);