id method

int? id(
  1. Object? key
)

Returns the id of the InspectEntry for the given key. Returns null if no entry exists for the given key.

Implementation

int? id(Object? key) => _cache[_effectiveKey(key)]?.$1;