isSameDay method

bool isSameDay (DateTime a, DateTime b)

Whether or not two dates are on the same day.

Implementation

static bool isSameDay(DateTime a, DateTime b) {
  return a.year == b.year && a.month == b.month && a.day == b.day;
}