QueryCallsRequest constructor

QueryCallsRequest({
  1. Map<String, Object> filterConditions = const {},
  2. int? limit,
  3. String? next,
  4. String? prev,
  5. List<SortParamRequest> sort = const [],
  6. bool? watch,
})

Returns a new QueryCallsRequest instance.

Implementation

QueryCallsRequest({
  this.filterConditions = const {},
  this.limit,
  this.next,
  this.prev,
  this.sort = const [],
  this.watch,
});