isSameWeek method

bool isSameWeek(
  1. DateTime other
)

Implementation

bool isSameWeek(DateTime other) {
  return startOfWeek == other.startOfWeek;
}