debugDump method
Dumps the python object to the console.
Implementation
@override
Map<String, Object?> debugDump({InspectionCache? cache}) => <String, Object?>{
"parameters": parameters.map(
(String key, Parameter value) =>
MapEntry<String, Map<String, Object?>>(key, value.debugDump()),
),
"return_annotation": return_annotation,
};