DbQueryResponse constructor

DbQueryResponse({
  1. String? code,
  2. String? message,
  3. dynamic data,
  4. String? requestId,
  5. int? total,
  6. int? limit,
  7. int? offset,
})

Implementation

DbQueryResponse({
  this.code,
  this.message,
  this.data,
  this.requestId,
  this.total,
  this.limit,
  this.offset,
});