QueryParams constructor

QueryParams({
  1. List<String>? selectColumns,
  2. String? whereString,
  3. List? whereArguments,
  4. String? orderBy,
  5. String? groupBy,
  6. String? having,
  7. bool? distinct,
  8. int? limit,
  9. int? offset,
})

Implementation

QueryParams(
    {this.selectColumns,
    this.whereString,
    this.whereArguments,
    this.orderBy,
    this.groupBy,
    this.having,
    this.distinct,
    this.limit,
    this.offset});