AutoPagedList<T> constructor
const
AutoPagedList<T> ({
- Key? key,
- required PagedListWidgetBuilder<
T> widgetBuilder, - required PagedListExecutor<
T> executor, - bool grid = false,
- int crossAxisCount = 2,
Implementation
const AutoPagedList({
Key? key,
required this.widgetBuilder,
required this.executor,
this.grid = false,
this.crossAxisCount = 2,
}) : super(key: key);