IndexedStackLazy constructor

IndexedStackLazy({
  1. Key? key,
  2. int index = 0,
  3. required List<Widget> children,
})

Implementation

IndexedStackLazy({Key? key, this.index = 0, required this.children}) : super(key: key);