AuthScimConnectionCatalogQuery constructor

AuthScimConnectionCatalogQuery({
  1. required AuthScimConnectionBinding binding,
  2. int limit = 100,
  3. int offset = 0,
})

Creates a bounded query for connections in binding.

Implementation

AuthScimConnectionCatalogQuery({
  required this.binding,
  this.limit = 100,
  this.offset = 0,
}) {
  _page(limit, offset);
}