compareTo method

int compareTo(
  1. Day day
)

Compares this day to other, returning zero if the values are equal.

This will call the DateTime.compareTo method.

Implementation

int compareTo(Day day) => _time.compareTo(day._time);