withDate method

DateTime withDate(
  1. Date date
)

Convert to DateTime with the given date

Implementation

DateTime withDate(Date date) => date.asDateTime.copyWith(
      hour: hour,
      minute: minute,
      second: second,
      millisecond: millisecond,
    );