FastListView<T extends FastItem> constructor

FastListView<T extends FastItem>({
  1. Key? key,
  2. required List<T> items,
  3. EdgeInsets padding = EdgeInsets.zero,
  4. bool groupByCategory = false,
  5. bool showItemDivider = false,
  6. bool useDenseListItem = true,
  7. bool isViewScrollable = true,
  8. bool sortItems = true,
  9. bool isEnabled = true,
  10. EdgeInsets? itemContentPadding,
  11. FastListItemBuilder<T>? listItemBuilder,
  12. List<FastCategory>? categories,
})

Implementation

FastListView({
  Key? key,
  required this.items,
  this.padding = EdgeInsets.zero,
  this.groupByCategory = false,
  this.showItemDivider = false,
  this.useDenseListItem = true,
  this.isViewScrollable = true,
  this.sortItems = true,
  this.isEnabled = true,
  this.itemContentPadding,
  this.listItemBuilder,
  this.categories,
}) : super(key: key);