ScrollableListView constructor

const ScrollableListView({
  1. Key? key,
  2. required double itemHeight,
  3. required int length,
  4. required ListItemBuilder itemBuilder,
  5. ListViewSelectionController? selectionController,
  6. ListViewItemDisablerController? itemDisabledController,
  7. TargetPlatform? platform,
  8. ScrollPaneController? scrollController,
})

Implementation

const ScrollableListView({
  Key? key,
  required this.itemHeight,
  required this.length,
  required this.itemBuilder,
  this.selectionController,
  this.itemDisabledController,
  this.platform,
  this.scrollController,
}) : super(key: key);