ProsteIndexedStack constructor

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

Implementation

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