providers property

Map<_ProviderName?, _ProviderValue> providers

All providers registered in the container, including named our unnamed instances and builders.

Instances and builders can be named or unnamed.

Example:

{
  "int-instance": {int: 1},
  null: {Character: Character('Anakin', 'Skywaker')},
};

Implementation

Map<_ProviderName?, _ProviderValue> get providers => _providers;