PlutoLazyPaginationRequest constructor

PlutoLazyPaginationRequest({
  1. required int page,
  2. PlutoColumn? sortColumn,
  3. List<PlutoRow> filterRows = const <PlutoRow>[],
})

Implementation

PlutoLazyPaginationRequest({
  required this.page,
  this.sortColumn,
  this.filterRows = const <PlutoRow>[],
});