Day constructor

Day()

Constructs a new Day instance with current date and time in the local time zone.

Example:

final d = Day();

Implementation

Day() {
  _initTime(DateTime.now());
}