toDateTime method

DateTime toDateTime()

Converts this date to a DateTime set to midnight.

Example:

final date = LocalDate(2024, 6, 27);
final dateTime = date.toDateTime();
print(dateTime); // 2024-06-27 00:00:00.000

Implementation

DateTime toDateTime() => DateTime(year, month, day);