containsSection method

bool containsSection(
  1. PageOffset section
)

Implementation

bool containsSection(PageOffset section) {
  return sections.any((s) => s.containsOffset(section.startAt));
}