AnimatedIndexedStack constructor

const AnimatedIndexedStack({
  1. Key? key,
  2. required int index,
  3. required List<Widget> children,
  4. Duration duration = const Duration(milliseconds: 200),
})

Implementation

const AnimatedIndexedStack({
  super.key,
  required this.index,
  required this.children,
  this.duration = const Duration(milliseconds: 200),
});