weekSpansMonths property

bool get weekSpansMonths

Checks if this week spans two months.

Implementation

bool get weekSpansMonths {
  final start = startOf(TemporalUnit.week);
  final end = endOf(TemporalUnit.week);
  return start.month != end.month;
}