buildKey method

Key buildKey(
  1. int index,
  2. T item
)

Builds a unique key for each list item that will be attached during the build process

Implementation

Key buildKey(int index, T item) {
  return PageStorageKey("list-item-${tryGetKey(index, item)}");
}