maxActivePages method

Query<Object?> maxActivePages(
  1. int maxPages
)

Implementation

Query<Object?> maxActivePages(int maxPages) {
  return where(
    maxActivePagesKey,
    isEqualTo: maxPages,
  );
}