operator [] method

InspectEntry? operator [](
  1. Object? key
)

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

Implementation

InspectEntry? operator [](Object? key) => _cache[_effectiveKey(key)]?.$2;