ListQueryParams<T> constructor

const ListQueryParams<T>({
  1. Map<String, dynamic>? params,
  2. String? search,
  3. Filter<T>? filter,
  4. Sort<T>? sort,
  5. int? limit,
  6. int? offset,
})

Implementation

const ListQueryParams({
  Map<String, dynamic>? this.params,
  String? this.search,
  Filter<T>? this.filter,
  Sort<T>? this.sort,
  int? this.limit,
  int? this.offset,
}) : super();