Checks if the current date is on the same day as other
other
bool isSameDate(DateTime other) => year == other.year && month == other.month && day == other.day;