IndexedKey constructor

const IndexedKey(
  1. Key? key,
  2. int index
)

Creates an indexed key that delegates its operator== to the given key.

It contains an index used in ScrollablePositionedList.

Implementation

const IndexedKey(this.key, this.index);