debugDump method

  1. @override
Map<String, Object?> debugDump({
  1. InspectionCache? cache,
})
override

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,
    };