AppListViewBuilder<T> constructor
const
AppListViewBuilder<T> ({
- Key? key,
- List<
T> ? listData, - required ChildBuilder<
T> child, - ScrollController? scrollController,
- bool reverse = false,
Implementation
const AppListViewBuilder({
super.key,
this.listData,
required this.child,
this.scrollController,
this.reverse = false,
});