typeMap property
Map<String?, TypeDefinition?>
get
typeMap
Map of all type names to their respective TypeDefinitions, with type resolution enabled (if applicable)
Implementation
Map<String?, TypeDefinition?> get typeMap => _typeMap!.map(
(name, definition) => MapEntry(
name,
_withAwareness(definition),
),
);