UDbAdminRowsParams constructor

UDbAdminRowsParams({
  1. required String table,
  2. String schema = "public",
  3. int pageSize = 100,
  4. int pageNumber = 1,
  5. String? orderByColumn,
  6. bool descending = false,
  7. String? where,
  8. bool withCount = true,
})

Implementation

UDbAdminRowsParams({
  required this.table,
  this.schema = "public",
  this.pageSize = 100,
  this.pageNumber = 1,
  this.orderByColumn,
  this.descending = false,
  this.where,
  this.withCount = true,
});