isSameIsoWeek method

bool isSameIsoWeek(
  1. Hora other
)

Whether this date is in the same ISO week as other.

Implementation

bool isSameIsoWeek(Hora other) =>
    isoWeekYear == other.isoWeekYear && isoWeek == other.isoWeek;