IndexPath constructor

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

Implementation

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