debugRegistrationInfo property

Map<String, String?> get debugRegistrationInfo

Returns a map of registered types and their owner modules for debugging/DevTools purposes.

Implementation

Map<String, String?> get debugRegistrationInfo => Map.fromEntries(
  _registrations.keys.map(
    (t) => MapEntry(t.toString(), _registrationOwners[t]),
  ),
);