LazyIndexedStack constructor
const
LazyIndexedStack({
- Key? key,
- AlignmentGeometry alignment = AlignmentDirectional.topStart,
- TextDirection? textDirection,
- StackFit sizing = StackFit.loose,
- int index = 0,
- bool reuse = true,
- required IndexedWidgetBuilder itemBuilder,
- int itemCount = 0,
- int? preLoadIndex,
- int notReuseIndex = -1,
Implementation
const LazyIndexedStack(
{Key? key,
this.alignment = AlignmentDirectional.topStart,
this.textDirection,
this.sizing = StackFit.loose,
this.index=0,
this.reuse = true,
required this.itemBuilder,
this.itemCount = 0,
this.preLoadIndex,
this.notReuseIndex = -1})
: super(key: key);