isDay method

bool isDay(
  1. DateTime now
)

Implementation

bool isDay(DateTime now) {
  return now.day == _v.day && now.month == _v.month && now.year == _v.year;
}