isSameISOWeek method

bool isSameISOWeek(
  1. Date other
)

Check if this date is in the same iso week than other

Implementation

bool isSameISOWeek(Date other) => startOfISOWeek == other.startOfISOWeek;