getIdFor<T> method

String? getIdFor<T>()

Retrieves the id that has been overridden for each Type.

The value obtained may not be the latest.

Implementation

String? getIdFor<T>() => _idOverrides.containsKey(T) ? _idOverrides[T] : id;