isSameDayWith method

bool isSameDayWith(
  1. DateTime dateB
)

Returns true if the two DateTime objects have the same day, month, and year, or are both null.

Implementation

bool isSameDayWith(DateTime dateB) =>
    material.DateUtils.isSameDay(this, dateB);