SelectedIndexInheritedWidget constructor

const SelectedIndexInheritedWidget({
  1. Key? key,
  2. required List<int> selectedIndex,
  3. required int numberOfSelectedIndices,
  4. required Widget child,
})

Implementation

const SelectedIndexInheritedWidget({
  super.key,
  required this.selectedIndex,
  required this.numberOfSelectedIndices,
  required this.child,
}) : super(child: child);