QueryResponse<T> constructor

QueryResponse<T>({
  1. int? offset,
  2. int? total,
  3. List<T>? results,
  4. Map<String, String?>? meta,
  5. ResponseStatus? responseStatus,
})

Implementation

QueryResponse(
    {this.offset, this.total, this.results, this.meta, this.responseStatus});