midnight method

HDateTime midnight(
  1. HTimeZone tz
)

Convert this date into HDateTime for midnight in given timezone.

Implementation

HDateTime midnight(HTimeZone tz) {
  return HDateTime(this, HTime.MIDNIGHT, tz);
}