ListViewport constructor

const ListViewport({
  1. required int start,
  2. required int end,
  3. required bool hasOverflowAbove,
  4. required bool hasOverflowBelow,
})

Implementation

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