Pagination constructor

Pagination({
  1. required int page,
  2. required int pageCount,
  3. ValueCmdCallback<int>? onChanged,
  4. bool showEdges = false,
  5. int gap = 1,
  6. Key? key,
})

Implementation

Pagination({
  required this.page,
  required this.pageCount,
  this.onChanged,
  this.showEdges = false,
  this.gap = 1,
  super.key,
});