isSameYearMonthDay method

bool isSameYearMonthDay(
  1. dynamic datetime
)

Implementation

bool isSameYearMonthDay(datetime) =>
    isSameYear(datetime) && isSameMonth(datetime) && isSameDay(datetime);