IndexPath constructor

IndexPath({
  1. required int section,
  2. required int index,
})

The Class that contains the section number and the index number in this section.

Implementation

IndexPath({required this.section, required this.index});