FindResult<T extends Model> constructor

FindResult<T extends Model>({
  1. List<User>? data,
  2. dynamic where,
  3. dynamic order,
  4. int? limit,
  5. int? offset,
  6. int? count,
})

Implementation

FindResult({
  this.data,
  this.where,
  this.order,
  this.limit,
  this.offset,
  this.count,
});