QueryResult<T> constructor

const QueryResult<T>({
  1. required List<T> data,
  2. int? total,
  3. int? limit,
  4. int? skip,
  5. bool hasMore = false,
})

Creates a new QueryResult instance

Implementation

const QueryResult({
  required this.data,
  this.total,
  this.limit,
  this.skip,
  this.hasMore = false,
});