isSameWeek method

bool isSameWeek(
  1. DateTime other
)

Implementation

bool isSameWeek(DateTime other) {
  return other.isOnOrAfter(startOfWeek) && other.isOnOrBefore(endOfWeek);
}