LazyLoadIndexedStack constructor

const LazyLoadIndexedStack({
  1. Key? key,
  2. required LazyStackController controller,
  3. required List<Widget> children,
  4. AlignmentGeometry alignment = AlignmentDirectional.topStart,
  5. TextDirection? textDirection,
  6. IndexdAnimationType animation = IndexdAnimationType.none,
  7. Duration animationDuration = const Duration(milliseconds: 200),
})

Implementation

const LazyLoadIndexedStack({
  super.key,
  required this.controller,
  required this.children,
  this.alignment = AlignmentDirectional.topStart,
  this.textDirection,
  this.animation = IndexdAnimationType.none,
  this.animationDuration = const Duration(milliseconds: 200),
});