Query constructor

Query({
  1. int? limit,
  2. int? offset,
  3. List<String>? sort,
  4. Meta? meta,
  5. Map<String, Query>? deep,
  6. List<String>? fields,
  7. Map<String, Object?>? customParams,
})

Custom url params Constructor for query. All fields are optional.

Implementation

// Map<String, Object?>? customParams;

/// Constructor for query. All fields are optional.
Query({
  this.limit,
  this.offset,
  this.sort,
  this.meta,
  Map<String, Query>? deep,
  List<String>? fields,
  Map<String, Object?>? customParams,
}) : super(deep: deep, fields: fields, customParams: customParams);