LazyIndexedStack constructor

const LazyIndexedStack({
  1. Key? key,
  2. AlignmentGeometry alignment = AlignmentDirectional.topStart,
  3. TextDirection? textDirection,
  4. StackFit sizing = StackFit.loose,
  5. int? index = 0,
  6. List<Widget> children = const <Widget>[],
})

Implementation

const LazyIndexedStack({
  Key? key,
  this.alignment = AlignmentDirectional.topStart,
  this.textDirection,
  this.sizing = StackFit.loose,
  this.index = 0,
  this.children = const <Widget>[],
}) : super(key: key);