SuperSliverList.list constructor
SuperSliverList.list({
- Key? key,
- required List<
Widget> children, - ExtentPrecalculationPolicy? extentPrecalculationPolicy,
- ListController? listController,
- ExtentEstimationProvider? extentEstimation,
- bool delayPopulatingCacheArea = true,
- bool layoutKeptAliveChildren = false,
- bool addAutomaticKeepAlives = true,
- bool addRepaintBoundaries = true,
- bool addSemanticIndexes = true,
Creates a SuperSliverList from list of child widgets.
See SliverList.list for details.
Implementation
SuperSliverList.list({
super.key,
required List<Widget> children,
this.extentPrecalculationPolicy,
this.listController,
this.extentEstimation,
this.delayPopulatingCacheArea = true,
this.layoutKeptAliveChildren = false,
bool addAutomaticKeepAlives = true,
bool addRepaintBoundaries = true,
bool addSemanticIndexes = true,
}) : super(
delegate: SliverChildListDelegate(
children,
addAutomaticKeepAlives: addAutomaticKeepAlives,
addRepaintBoundaries: addRepaintBoundaries,
addSemanticIndexes: addSemanticIndexes,
),
);