ListWindow<T> constructor

const ListWindow<T>({
  1. required List<T> items,
  2. required int start,
  3. required int end,
  4. required bool hasOverflowAbove,
  5. required bool hasOverflowBelow,
})

Implementation

const ListWindow({
  required this.items,
  required this.start,
  required this.end,
  required this.hasOverflowAbove,
  required this.hasOverflowBelow,
});