PlanningCenterApiQuery constructor

PlanningCenterApiQuery({
  1. int perPage = 25,
  2. int pageOffset = 0,
  3. bool getAll = false,
  4. String? order,
  5. List<PlanningCenterApiWhere>? where,
  6. Iterable<String> filter = const <String>[],
  7. Iterable<String> include = const <String>[],
  8. Map<String, String> extraParams = const {},
})

Implementation

PlanningCenterApiQuery({
  this.perPage = 25,
  this.pageOffset = 0,
  this.getAll = false,
  this.order,
  List<PlanningCenterApiWhere>? where,
  Iterable<String> filter = const <String>[],
  Iterable<String> include = const <String>[],
  this.extraParams = const {},
}) : where = where ?? [] {
  this.filter.addAll(filter);
  this.include.addAll(include);
}