get method

E? get(
  1. int index
)

Implementation

E? get(int index) {
  autoPurge();
  var weakRef = _entries[index];
  return weakRef.target;
}