AppListViewBuilder<T> constructor

const AppListViewBuilder<T>({
  1. Key? key,
  2. List<T>? listData,
  3. required ChildBuilder<T> child,
  4. ScrollController? scrollController,
  5. bool reverse = false,
})

Implementation

const AppListViewBuilder({
  super.key,
  this.listData,
  required this.child,
  this.scrollController,
  this.reverse = false,
});