adjustTimeToDateHourAndMinutesOnly method
Implementation
DateTime adjustTimeToDateHourAndMinutesOnly(
{bool isUtc = true, DateTime? date}) {
DateTime convertedDate = date ?? this;
if (isUtc) {
convertedDate = convertedDate.toUtc();
}
return convertedDate.copyWith(
second: 0,
millisecond: 0,
microsecond: 0,
);
}