IndexedStackProps constructor

const IndexedStackProps({
  1. required int index,
  2. required List<Widget> children,
})

Implementation

const IndexedStackProps({
  required this.index,
  required this.children,
});