isSameWeekAs method

bool isSameWeekAs(
  1. DateTime other
)

Checks if this date is the same week as other

Implementation

bool isSameWeekAs(DateTime other) {
  return DateComparisons.isSameWeek(this, other);
}