DocumentsQuery constructor

const DocumentsQuery({
  1. int? limit,
  2. int? offset,
  3. List<String> fields = const [],
  4. Object? filter,
  5. MeiliOperatorExpressionBase? filterExpression,
})

Implementation

const DocumentsQuery({
  this.limit,
  this.offset,
  this.fields = const [],
  this.filter,
  this.filterExpression,
});