AnimatedIndexedStack constructor

const AnimatedIndexedStack({
  1. Key? key,
  2. required MapStack stack,
  3. required ActiveChange? change,
  4. required int index,
  5. required List<Widget> children,
})

Implementation

const AnimatedIndexedStack({
  Key? key,
  required this.stack,
  required this.change,
  required this.index,
  required this.children,
}) : super(key: key);